type Props = { name: string; className?: string; }; export function Icon({ name, className }: Props) { return ( {name} ); }