import { Icon } from './icon'; import { twMerge } from 'tailwind-merge'; type CustomLoaderProps = { iconName: string; animateType: 'bounce' | 'spin'; className?: string; }; export const CustomLoader: React.FC = ({ iconName, animateType = 'spin', className }) => { return ( ); };