import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Address } from '../Address/Address' import { Mana } from '../Mana/Mana' import { Blockie } from './Blockie' const address = '0x0F5D2fB29fb7d3CFeE444a200298f468908cC942' const meta: Meta = { title: 'Blockie', component: Blockie } export default meta type Story = StoryObj export const Single: Story = { render: () => } export const Scales: Story = { render: () => ( <> ) } export const CircularShape: Story = { render: () => } export const InAParagraph: Story = { render: () => (

You've transfered 1,000 to{' '}

.

) }