import type { Meta, StoryObj } from "@storybook/react"; import { UserCard, Button } from "@managemate/react"; const meta = { title: "Profile/UserCard", component: UserCard, tags: ["autodocs"], } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { name: "Marie Dupont", role: "Lead Developer", initials: "MD", status: "online" }, }; export const Sizes: Story = { render: () => (
), }; export const Interactive: Story = { args: { name: "Lohann Bouveresse", role: "CEO", initials: "LB", status: "online", meta: "ceo@managemate.fr", href: "#", actions: