UNPKG

soda-material

Version:

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

25 lines (24 loc) 1.06 kB
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent<{ children?: import("react").ReactNode; leadingNavigationIcon?: import("react").ReactNode; trailingIcon?: import("react").ReactNode; fixed?: boolean | undefined; sd?: "center" | "small" | "medium" | "large" | undefined; } & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "leadingNavigationIcon" | "trailingIcon" | "fixed" | "sd"> & import("react").RefAttributes<HTMLDivElement>>; tags: string[]; args: { children: import("react/jsx-runtime").JSX.Element; leadingNavigationIcon: import("react/jsx-runtime").JSX.Element; trailingIcon: import("react/jsx-runtime").JSX.Element; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Small: Story; export declare const Center: Story; export declare const Medium: Story; export declare const Large: Story;