Components
All components
Feedback

Empty state

A centered placeholder with an icon, title, optional sub-line, and an action — for empty lists and zero states.

Preview

Preview
light
Nothing here yet
Items you create will appear in this list.
dark
Nothing here yet
Items you create will appear in this list.

Code

<EmptyState icon={Inbox} title="Nothing here yet"
  sub="Items you create will appear in this list."
  action={<Button size="sm">Create</Button>} />

Import from @/components/ui.

Props

PropTypeDefaultDescription
iconLucideIconLeading glyph.
titlestringHeadline.
substringSupporting line.
actionReactNodeOptional CTA.

Related