// Original: src/renderer/src/components/Spinner.tsx import { motion } from 'framer-motion' import { Search } from 'lucide-react' import styled from 'styled-components' interface Props { text: React.ReactNode } // Define variants for the spinner animation const spinnerVariants = { defaultColor: { color: '#2a2a2a' }, dimmed: { color: '#8C9296' } } export default function Spinner({ text }: Props) { return ( {text} ) } const SearchWrapper = styled.div` display: flex; align-items: center; gap: 4px; /* font-size: 14px; */ padding: 0px; /* padding-left: 0; */ ` const Searching = motion.create(SearchWrapper)