UIEmptyState
Preview
Section titled “Preview”| Prop | Type | Default | Description |
|---|---|---|---|
title | string | required | Main message |
description | string | — | Supporting text |
action | ReactNode | — | Action element (button, link, etc.) |
import { UIEmptyState, UIButton } from "tango-api";
<UIEmptyState title="Nothing here" description="Create something to get started." action={<UIButton label="Create" variant="primary" onClick={handleCreate} />}/>