fleet/frontend/components/Icon/Icon.stories.tsx
2023-05-03 17:51:33 +01:00

16 lines
277 B
TypeScript

import { Meta, StoryObj } from "@storybook/react";
import Icon from ".";
const meta: Meta<typeof Icon> = {
title: "Components/Icon",
component: Icon,
args: { name: "plus" },
};
export default meta;
type Story = StoryObj<typeof Icon>;
export const Basic: Story = {};