/// import { SxProps, Theme } from '@mui/material'; interface IconProps { className?: string; color?: string; sx?: SxProps; } export default function OrganizationIcon({ className, color, sx, }: IconProps): JSX.Element; export {};