EmptyState
"No results" / "no data yet" placeholder. Hairline-bordered icon container, title, optional description and action.
$npx shadcn add @patchui/empty-state
No results match those filters
Try removing a filter, or reset to see everything.
Your list is empty
Save items here to keep track of the things you care about.
Usage
import { EmptyState, Button } from "@patchui/react";
<EmptyState
title="No jobs match those filters"
description="Try removing a filter, or reset to see everything."
icon={<SearchIcon />}
action={<Button variant="primary">Browse jobs</Button>}
/>Props
title- short headlinedescription- optional helper texticon- optional icon, rendered in a 36×36 hairline-bordered boxaction- optional CTA node (typically a<Button>); pass routing primitives by wrapping the Button with your router's Link