import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Icon } from "./Icon"; import { UserIcon } from "@heroicons/react/24/solid"; const meta: Meta = { component: Icon, title: "Primitives/Icon", argTypes: {}, }; export default meta; type Story = StoryObj; export const Variants: Story = { render: (args) => (
), args: {}, };