import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Network } from '@dcl/schemas/dist/dapps/network' import { Header } from '../Header/Header' import { Mana } from './Mana' const meta: Meta = { title: 'Mana', component: Mana } export default meta type Story = StoryObj export const Symbol: Story = { render: () => } export const SymbolMANA: Story = { render: () => MANA } export const TotalVoted: Story = { render: () => ( <>
Total voted
1,235,345 ) } export const Sizes: Story = { render: () => ( <> 1,000 1,000 1,000 1,000 1,000 ) } export const InAParagraph: Story = { render: () => (

You've voted with 1,000.

) } export const Matic: Story = { render: () => (

You deposited{' '} 1,000 {' '} into Matic Network.

) } export const MaticPrimary: Story = { render: () => (

You deposited{' '} 1,000 {' '} into Matic Network.

) } export const MaticSizes: Story = { render: () => ( <> 1,000 1,000 1,000 1,000 1,000 ) } export const ManaTooltip: Story = { render: () => ( <> 1,000 ) }