UNPKG

soda-material

Version:

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

20 lines (19 loc) 765 B
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<{ headline?: import("react").ReactNode; button?: import("react").ReactNode; onButtonClick?: (() => void) | undefined; onCloseClick?: (() => void) | undefined; children?: import("react").ReactNode; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "button" | "headline" | "onButtonClick" | "onCloseClick"> & import("react").RefAttributes<HTMLDivElement>>; parameters: { layout: string; }; tags: string[]; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story;