Skip to main content

Empty

An inline placeholder for the "loaded, but there's nothing here" state — the counterpart to Skeleton (which covers "nothing loaded yet"). Pairs naturally with a List, table, or Swiper's empty slot. Defaults to an inbox icon and a "No data" description.

import { Empty } from '@jbpark/ui-kit';

<Empty
title="No projects yet"
description="Create your first project to get started."
action={<Button type="primary">New project</Button>}
/>;

No projects yet

Create your first project to get started.

Props

PropTypeDefault
iconReactNodeinbox icon
titleReactNode-
descriptionReactNode'No data'
actionReactNode-
classNamestring-

Any other div props are forwarded to the root element (which carries role="status").