UNPKG

@tritium-research/react-component

Version:

A react component library based on material-ui, build for tritium internal usecases.

14 lines (13 loc) 523 B
/// <reference types="react" /> import type { StoryObj } from "@storybook/react"; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<Omit<import("../components/Input").InputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>; tags: string[]; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story; export declare const WithCount: Story; export declare const Multiline: Story; export declare const ErrorMessage: Story;