import React from 'react'; import { DISPLAY, FLEX_DIRECTION, } from '../../../helpers/constants/design-system'; import Box from '../../ui/box'; 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', }, }; export const DefaultStory = (args) => ; export const Label = (args) => ( ); export const Src = (args) => ( ); DefaultStory.storyName = 'Default';