UNPKG

@cgi-learning-hub/ui

Version:

@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features

11 lines (10 loc) 462 B
import { TextFieldProps } from '@mui/material/TextField'; import { Meta, StoryObj } from '@storybook/react-vite'; declare const TextField: (props: TextFieldProps) => import("react/jsx-runtime").JSX.Element; declare const meta: Meta<typeof TextField>; export default meta; type Story = StoryObj<typeof TextField>; export declare const Default: Story; export declare const Filled: Story; export declare const Standard: Story; export declare const Disabled: Story;