import { Meta, StoryFn } from '@storybook/react'; import React from 'react'; import { AlignItems, Display, TextColor, BackgroundColor, BorderColor, IconColor, } from '../../../helpers/constants/design-system'; import { AvatarBase, Icon, IconName, Box } from '..'; import { AvatarBaseSize } from './avatar-base.types'; import README from './README.mdx'; const marginSizeKnobOptions = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 'auto', ]; export default { title: 'Components/ComponentLibrary/AvatarBase', component: AvatarBase, parameters: { docs: { page: README, }, }, argTypes: { size: { control: 'select', options: Object.values(AvatarBaseSize), }, children: { control: 'text', }, color: { options: Object.values(TextColor), control: 'select', }, backgroundColor: { options: Object.values(BackgroundColor), control: 'select', }, borderColor: { options: Object.values(BorderColor), control: 'select', }, display: { options: Object.values(Display), control: 'select', table: { category: 'box props' }, }, marginTop: { options: marginSizeKnobOptions, control: 'select', table: { category: 'box props' }, }, marginRight: { options: marginSizeKnobOptions, control: 'select', table: { category: 'box props' }, }, marginBottom: { options: marginSizeKnobOptions, control: 'select', table: { category: 'box props' }, }, marginLeft: { options: marginSizeKnobOptions, control: 'select', table: { category: 'box props' }, }, }, args: { size: AvatarBaseSize.Md, color: TextColor.textDefault, backgroundColor: BackgroundColor.backgroundAlternative, borderColor: BorderColor.borderDefault, children: 'B', }, } as Meta; export const DefaultStory: StoryFn = (args) => ( ); DefaultStory.storyName = 'Default'; export const Size: StoryFn = (args) => ( ); export const Children: StoryFn = (args) => ( A ); export const ColorBackgroundColorAndBorderColor: StoryFn = ( args, ) => ( B G S );