UNPKG

soda-material

Version:

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

22 lines (21 loc) 783 B
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<{ icon?: import("react").ReactNode; badge?: import("react").ReactNode; children?: import("react").ReactNode; enabled?: boolean | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "icon" | "enabled" | "badge"> & import("react").RefAttributes<HTMLDivElement>>; tags: string[]; args: { icon: import("react/jsx-runtime").JSX.Element; children: string; badge: string; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story; export declare const Enabled: Story;