import type { Meta, StoryObj } from "@storybook/react"; import { Avatar } from "."; const meta: Meta = { title: "Example/Avatar", component: Avatar, }; type Story = StoryObj; export const Initials: Story = { render: () => ( ), }; export const Image: Story = { render: () => ( ), }; export const Empty: Story = { render: () => , }; export default meta;