Skip to content

HomeIcon

const HomeIcon: 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/HomeIcon.tsx:27

Home icon component for home and main navigation.

A standard house icon commonly used for home navigation, main page links, and dashboard access in editor interfaces.

Example

// Basic usage
<HomeIcon />
// With custom size and color
<HomeIcon size="md" color="primary" />
// In a home button
<Button icon={<HomeIcon />}>Home</Button>