import { FC, PropsWithChildren } from "react"; export type IconProps = PropsWithChildren<{ size?: number; className?: string; onClick?: () => void; }>; export const Icon: FC = ({ size = 20, className, onClick, viewBox = "0 0 20 20", children, }) => ( {children} );