UNPKG

soda-material

Version:

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

17 lines (16 loc) 644 B
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<{ children?: import("react").ReactNode; style?: import("react").CSSProperties | undefined; className?: string | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "className" | "style" | "children"> & import("react").RefAttributes<{ replace(children: import("react").ReactNode): void; }>>; tags: string[]; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story;