import { Meta, StoryObj } from "@storybook/react"; import StatusIndicatorWithIcon from "./StatusIndicatorWithIcon"; const meta: Meta = { title: "Components/StatusIndicatorWithIcon", component: StatusIndicatorWithIcon, args: { status: "success", value: "Yes", tooltip: { tooltipText: "Tooltip text", }, }, }; export default meta; type Story = StoryObj; export const Basic: Story = {};