import { Meta, StoryObj } from "@storybook/react"; import PremiumFeatureIconWithTooltip from "./PremiumFeatureIconWithTooltip"; const meta: Meta = { title: "Components/PremiumFeatureIconWithTooltip", component: PremiumFeatureIconWithTooltip, }; export default meta; type Story = StoryObj; export const Basic: Story = {};