mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import PremiumFeatureIconWithTooltip from "./PremiumFeatureIconWithTooltip";
|
|
|
|
const meta: Meta<typeof PremiumFeatureIconWithTooltip> = {
|
|
title: "Components/PremiumFeatureIconWithTooltip",
|
|
component: PremiumFeatureIconWithTooltip,
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof PremiumFeatureIconWithTooltip>;
|
|
|
|
export const Basic: Story = {};
|