import type { Meta, StoryObj } from "@storybook/nextjs-vite" import { InputLabel } from "./InputLabel" const meta: Meta = { title: "Core Components/InputLabel", component: InputLabel, argTypes: {}, } export default meta type Story = StoryObj export const Default: Story = { args: { children: "Label", required: false, }, } export const Discreet: Story = { args: { children: "Label", size: "discreet", }, } export const Small: Story = { args: { children: "Label", size: "small", }, }