interface OfficeIconType { className?: string; onClick?: () => void; } const OfficeIcon = ({ className, onClick }: OfficeIconType) => { return ( ); }; export default OfficeIcon;