// Each exported component in the package should have its own stories file import type { StoryObj } from '@storybook/react-vite'; import { Box, Stack } from '@availity/mui-layout'; import { Typography } from '@availity/mui-typography'; import { EmptyStateImage, EmptyStateImageProps, EmptyStateImages } from './EmptyStateImage'; // eslint-disable-next-line @nx/enforce-module-boundaries import { SystemPropsList } from '../../../../data/MuiSystemProperties'; export default { title: 'Components/EmptyState/EmptyStateImage', component: EmptyStateImage, tags: ['autodocs'], args: { variant: 'NoSearchFound', }, parameters: { docs: { controls: { exclude: SystemPropsList, }, }, }, }; export const _EmptyStateImage: StoryObj = { render: (args: EmptyStateImageProps) => ( ), }; const variants = Object.keys(EmptyStateImages); export const _variants: StoryObj = { render: () => { return ( {variants.map((variant) => ( {variant} ))} ); }, };