EmptyState
Placeholder for empty lists/collections. Composable action slot accepts any Button or link.
<EmptyState title="No members yet" description="Invite your first teammate to get started." action={<Button size="sm">Invite member</Button>} />
Editable — change the code above and the preview updates live.
Installation
import { EmptyState } from "@labanaat/ui/empty-state";Props
| Prop | Type | Default | Description |
|---|---|---|---|
| title | ReactNode | — | Defaults to a localized string if omitted |
| description | ReactNode | — | Supporting text |
| icon | ReactNode | — | Decorative icon slot |
| action | ReactNode | — | Typically a Button |