@cgi-learning-hub/ui
Version:
@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features
10 lines (9 loc) • 464 B
TypeScript
import { FormControlLabelProps } from '@mui/material/FormControlLabel';
import { Meta, StoryObj } from '@storybook/react-vite';
declare const FormControlLabel: (props: FormControlLabelProps) => import("react/jsx-runtime").JSX.Element;
declare const meta: Meta<typeof FormControlLabel>;
export default meta;
type Story = StoryObj<typeof FormControlLabel>;
export declare const Checkbox: Story;
export declare const Radio: Story;
export declare const Switch: Story;