import AvatarContainer from "../../app/components/utility/AvatarContainer";
import Avatar from "../../app/components/icons/Avatar";
export default {
title: "Components/Utility/AvatarContainer",
component: AvatarContainer,
parameters: {
layout: "centered",
docs: {
description: {
component:
"A container component that groups multiple avatars together with overlapping spacing. Useful for displaying multiple users or team members in a compact format.",
},
},
},
argTypes: {
size: {
control: { type: "select" },
options: ["small", "medium", "large", "xlarge"],
description: "The size of the avatar container and its children",
},
className: {
control: { type: "text" },
description: "Additional CSS classes",
},
},
tags: ["autodocs"],
};
export const Default = {
args: {
size: "medium",
},
render: (args) => (