import { Meta, StoryObj } from '@storybook/react' import Image from 'next/image' import AvatarWithPlaceholder from '..' import { AvatarWithPlaceholderProps } from '../types' const meta: Meta = { title: '@baseapp-frontend | designSystem/Avatars/AvatarWithPlaceholder', component: AvatarWithPlaceholder, } export default meta type Story = StoryObj export const PlaceholderAvatar: Story = { args: { width: 50, height: 50, }, } export const ImageAvatar: Story = { args: { width: 50, height: 50, children: ( Avatar Icon ), }, } export const TextAvatar: Story = { args: { width: 50, height: 50, children: 'AA', }, }