UNPKG

soda-material

Version:

A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)

42 lines (41 loc) 1.29 kB
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<{ as?: keyof JSX.IntrinsicElements | undefined; sd?: "filled" | "outlined" | "tonal" | "standard" | undefined; children?: import("react").ReactNode; disabled?: boolean | undefined; selected?: boolean | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "disabled" | "selected" | "children" | "sd"> & import("react").RefAttributes<HTMLElement>>; parameters: { layout: string; }; tags: string[]; args: { children: import("react/jsx-runtime").JSX.Element; }; argTypes: { disabled: { type: "boolean"; options: boolean[]; control: { type: string; }; }; selected: { type: "boolean"; options: boolean[]; control: { type: string; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Standard: Story; export declare const Filled: Story; export declare const Outlined: Story; export declare const Tonal: Story;