import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { avatar } from '../../data/avatar' import { Mana } from '../Mana/Mana' import { Profile } from './Profile' import './Profile.stories.css' const meta: Meta = { title: 'Profile', component: Profile } export default meta type Story = StoryObj export const NoAvatar: Story = { render: () => ( <> ) } export const Avatar: Story = { render: () => ( <> ) } export const AvatarWithoutName: Story = { render: () => ( <> ) } export const AvatarWithAnUnclaimedName: Story = { render: () => ( <> ) } export const ImageOnly: Story = { render: () => ( <> ) } export const TextOnly: Story = { render: () => ( <> ) } export const Inline: Story = { render: () => ( <> You sent 1,000 to{' '} ) } export const Decentraland: Story = { render: () => ( <> You sent 1,000 to{' '} ) } export const SlicedAddress: Story = { render: () => (
) } export const Sizes: Story = { render: () => ( <> ) } export const ProfileWithAvatarAndContentLinkedToAnotherSite: Story = { render: () => ( <> ) } export const ProfileWithBlockieAndContentLinkedToAnotherSite: Story = { render: () => ( <> ) }