import React from 'react'; import { StoryFn, Meta } from '@storybook/react'; import { Display, FlexDirection, } from '../../../helpers/constants/design-system'; import { Box } from '..'; import README from './README.mdx'; import { PickerNetwork } from './picker-network'; export default { title: 'Components/ComponentLibrary/PickerNetwork', component: PickerNetwork, parameters: { docs: { page: README, }, }, argTypes: { label: { control: 'text', }, src: { control: 'text', }, }, args: { label: 'Avalanche C-Chain', src: './images/avax-token.png', }, } as Meta; export const DefaultStory = (args) => ; export const Label: StoryFn = (args) => ( ); export const Src: StoryFn = (args) => ( ); DefaultStory.storyName = 'Default';