soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
23 lines (22 loc) • 794 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: import("react").ForwardRefExoticComponent<{
inverse?: boolean | undefined;
disabled?: boolean | undefined;
children?: import("react").ReactNode;
as?: keyof JSX.IntrinsicElements | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "disabled" | "children" | "inverse"> & import("react").RefAttributes<HTMLElement>>;
tags: string[];
parameters: {
layout: string;
};
args: {
children: import("react/jsx-runtime").JSX.Element;
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const Inverse: Story;