import type { Meta, StoryObj } from '@storybook/react'; import { Avatar, AvatarFallback, AvatarImage, } from '@konobangu/design-system/components/ui/avatar'; /** * An image element with a fallback for representing the user. */ const meta = { title: 'ui/Avatar', component: Avatar, tags: ['autodocs'], argTypes: {}, render: (args) => ( CN ), parameters: { layout: 'centered', }, } satisfies Meta; export default meta; type Story = StoryObj; /** * The default form of the avatar. */ export const Default: Story = {};