import { InputLabel as Component } from "./"; import type { StoryObj, Meta } from "@storybook/react"; export default { title: "InputLabel", component: Component, } as Meta; export const InputLabel: StoryObj = { args: { children: "Label", }, };