interface Square4PeopleIconType { className?: string; onClick?: () => void; title?: string; timer?: string; fill?: string; } const Square4PeopleIcon = ({ className, onClick, title, timer, fill = "#5F6C7B", }: Square4PeopleIconType) => { return ( {/* Title and Timer Text */} {title && ( {title} )} {timer && ( {timer} )} ); }; export default Square4PeopleIcon;