type BuildingIconProps = { className?: string; }; export function BuildingIcon(props: BuildingIconProps) { const { className } = props; return ( ); }