import type { Meta, StoryObj } from "@storybook/react-vite"; import { IconGlyph } from "../components/IconGlyph"; const meta = { title: "UI/IconGlyph", component: IconGlyph, args: { name: "mdi:server-network", label: "Generic service", size: "md", }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = {};