import type { Meta, StoryObj } from '@storybook/nextjs' import ListEmpty from '.' const meta = { title: 'Base/Data Display/ListEmpty', component: ListEmpty, parameters: { layout: 'centered', docs: { description: { component: 'Large empty state card used in panels and drawers to hint at the next action for the user.', }, }, }, args: { title: 'No items yet', description: (

Add your first entry to see it appear here. Empty states help users discover what happens next.

), }, argTypes: { description: { control: false }, icon: { control: false }, }, tags: ['autodocs'], } satisfies Meta export default meta type Story = StoryObj export const Default: Story = {} export const WithCustomIcon: Story = { args: { title: 'Connect a data source', description: (

Choose a database, knowledge base, or upload documents to get started with retrieval.

), icon: (
{'\u{26A1}\u{FE0F}'}
), }, }