import { UserIcon } from "@phosphor-icons/react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { Avatar } from "../react";
import styles from "../styles.module.css";
import avatar from "./avatar.jpg";
const meta = {
title: "Designsystem/Avatar",
decorators: [
(Story) => (
),
],
} satisfies Meta;
export default meta;
type Story = StoryObj;
export const Default: Story = {
render: () => (
<>
MT
>
),
};
export const React: Story = {
render: () => (
<>
MT
>
),
};
export const Sizes: Story = {
render: () => (
<>
XS
SM
MD
LG
>
),
};
export const WithBadge: Story = {
render: () => (
<>
>
),
};
export const InButton: Story = {
render: () => (
<>
>
),
};