mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
15 lines
406 B
TypeScript
15 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 = {};
|