soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
31 lines (30 loc) • 993 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: import("react").ForwardRefExoticComponent<{
sd?: "text" | "filled" | "outlined" | "elevated" | "tonal" | undefined;
disabled?: boolean | undefined;
children?: import("react").ReactNode;
} & Omit<import("react").HTMLProps<HTMLButtonElement>, "ref" | "disabled" | "children" | "sd"> & import("react").RefAttributes<HTMLButtonElement>>;
parameters: {
layout: string;
};
tags: string[];
argTypes: {
disabled: {
type: "boolean";
options: boolean[];
control: {
type: string;
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Outlined: Story;
export declare const Filled: Story;
export declare const Elevated: Story;
export declare const Tonal: Story;
export declare const Text: Story;