import type { Meta, StoryObj } from '@storybook/react'; import { Avatar, AvatarProps } from '@rocketseat-ignite-ui/react'; export default { title: 'Data display/Avatar', component: Avatar, args: { src: 'https://github.com/diego3g.png', alt: 'Diego Fernandes', }, argTypes: { src: { control: { type: 'text', }, }, }, } as Meta; export const Default: StoryObj = {}; export const WithFallback: StoryObj = { args: { src: undefined, }, };