interface Props { size: number, hover?: boolean, color?: string } export default function CheckCircleIcon({size, hover, color}: Props) { let classNames = "" if (hover) { classNames += "icon-hover-fill" } return (
) }