1import type { AvatarProps } from './Avatar'; 2import Avatar from './Avatar'; 3import mdx from './Avatar.mdx'; 4 5export default { 6 component: Avatar, 7 title: 'components/Avatar', 8 parameters: { docs: { page: mdx } }, 9}; 10 11export const Playground = ({ ...args }) => <Avatar {...args}>PM</Avatar>; 12 13const args: AvatarProps<'span'> = {}; 14 15Playground.args = args; 1617export const Basic = () => <Avatar>HF</Avatar>;