fleet/frontend/components/StatusIndicatorWithIcon/StatusIndicatorWithIcon.stories.tsx

22 lines
483 B
TypeScript
Raw Normal View History

2023-05-03 16:51:33 +00:00
import { Meta, StoryObj } from "@storybook/react";
import StatusIndicatorWithIcon from "./StatusIndicatorWithIcon";
const meta: Meta<typeof StatusIndicatorWithIcon> = {
title: "Components/StatusIndicatorWithIcon",
component: StatusIndicatorWithIcon,
args: {
status: "success",
value: "Yes",
2023-05-03 16:51:33 +00:00
tooltip: {
tooltipText: "Tooltip text",
},
},
};
export default meta;
type Story = StoryObj<typeof StatusIndicatorWithIcon>;
export const Basic: Story = {};