import { Meta, StoryObj } from '@storybook/react'; import { ChainIcon } from '.'; export default { args: {}, component: ChainIcon, title: 'Components/Icons/ChainIcon', } as Meta; export const Default: StoryObj = { args: { chainId: 89346161, }, }; export const WithSize: StoryObj = { args: { chainId: 89346161, size: 50, }, };