import React from 'react'; import { motion } from 'framer-motion'; import { LucideIcon } from 'lucide-react'; interface IconLoadingProps { icon: LucideIcon; isActive: boolean; color: string; } export const IconLoading: React.FC = ({ icon: Icon, isActive, color }) => { if (!isActive) return null; return (
{[0, 1, 2].map((i) => ( ))}
); };