UNPKG

soda-material

Version:

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

26 lines (25 loc) 929 B
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<{ placeholder?: string | undefined; leadingIcon?: import("react").ReactNode; trailingIcon?: import("react").ReactNode; sd?: "view" | "bar" | undefined; value?: string | undefined; onChange?: ((value: string) => void) | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "placeholder" | "value" | "onChange" | "trailingIcon" | "sd" | "leadingIcon"> & import("react").RefAttributes<HTMLDivElement>>; parameters: { layout: string; }; tags: string[]; args: { placeholder: string; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Bar: Story; export declare const View: Story; export declare const WithIcon: Story;