import { ComponentStory, ComponentMeta } from '@storybook/react'; import React from 'react'; import CryptoLogos from '../CryptoLogos/CryptoLogos'; export default { title: '6.Graphic/Crypto Logos', component: CryptoLogos, argTypes: { onClick: { action: 'clicked' } }, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); export const Ethereum = Template.bind({}); Ethereum.args = { chain: 'ethereum', size: '48px', }; export const Binance = Template.bind({}); Binance.args = { chain: 'binance', size: '48px', }; export const Polygon = Template.bind({}); Polygon.args = { chain: 'polygon', size: '48px', }; export const Avalanche = Template.bind({}); Avalanche.args = { chain: 'avalanche', size: '48px', }; export const Fantom = Template.bind({}); Fantom.args = { chain: 'fantom', size: '48px', }; export const Arbitrum = Template.bind({}); Arbitrum.args = { chain: 'arbitrum', size: '48px', };