Skip to content

BuildingIcon

const BuildingIcon: NamedExoticComponent<Omit<{ children: ReactNode; className?: string; color?: IconColor; decorative?: boolean; ref?: Ref<SVGSVGElement>; size?: IconSize; testId?: string; title?: string; }, "children">>

Defined in: src/components/Icons/BuildingIcon.tsx:27

Building icon component for organizations and architectural contexts.

A multi-story building with windows, commonly used for company entries, workspaces, and architecture-related personas or sections.

Example

// Basic usage
<BuildingIcon />
// With custom size and color
<BuildingIcon size="md" color="secondary" />
// In a company picker
<Button icon={<BuildingIcon />}>Organization</Button>