import type { ComponentStory, ComponentMeta } from "@storybook/react"; import { Avatar } from "./avatar"; const Story: ComponentMeta = { component: Avatar, title: "Avatar", }; export default Story; const Template: ComponentStory = args => ; export const Image = Template.bind({}); Image.args = { src: "https://avatars.githubusercontent.com/u/28987707?s=96&v=4", }; export const Placeholder = Template.bind({}); Placeholder.args = { type: "placeholder", }; export const Name = Template.bind({}); Name.args = { type: "name", name: "James Cameron", };