import AvatarContainer from "../app/components/AvatarContainer";
import Avatar from "../app/components/Avatar";
export default {
title: "Components/AvatarContainer",
component: AvatarContainer,
parameters: {
layout: "centered",
},
tags: ["autodocs"],
argTypes: {
size: {
control: { type: "select" },
options: ["small", "medium", "large", "xlarge"],
},
},
args: {
size: "medium",
},
};
export const Default = {
render: (args) => (
),
};
export const Small = {
render: (args) => (
),
};
export const Large = {
render: (args) => (
),
};
export const XLarge = {
render: (args) => (
),
};