interface IconProps extends React.SVGProps { size?: number; color?: string; heart?: boolean; } export const IconLesbian: React.FC = ({ size = 24, heart = false, color = 'currentColor', ...props }) => { return ( {heart && ( )} ); };