UNPKG

another-ui

Version:

as the name says, it's another ui library for React built on Tailwind & Shadcn

10 lines (9 loc) 332 B
import { Meta, StoryObj } from '@storybook/react'; import { Input } from './Input'; declare const meta: Meta<typeof Input>; export default meta; type Story = StoryObj<typeof Input>; export declare const Default: Story; export declare const WithIcon: Story; export declare const Error: Story; export declare const HelperText: Story;