// Original: src/renderer/src/components/Spinner.tsx import { motion } from 'framer-motion' import { Search } from 'lucide-react' interface Props { text: React.ReactNode className?: string } // Define variants for the spinner animation const spinnerVariants = { defaultColor: { color: '#2a2a2a' }, dimmed: { color: '#8C9296' } } export default function Spinner({ text, className = '' }: Props) { return ( {text} ) }