1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| import type { Meta, StoryObj } from "@storybook/react";
| import { EnterpriseBadge } from "./enterprise-badge";
|
| const meta: Meta<typeof EnterpriseBadge> = {
| component: EnterpriseBadge,
| title: "UI/EnterpriseBadge",
| argTypes: {
| filled: { control: "boolean" },
| },
| };
|
| export default meta;
| type Story = StoryObj<typeof EnterpriseBadge>;
|
| export const Default: Story = {
| args: {},
| };
|
| export const Filled: Story = {
| args: {
| filled: true,
| },
| };
|
|