soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
14 lines (13 loc) • 526 B
TypeScript
/// <reference types="react" />
import './button.scss';
/**
* @specs https://m3.material.io/components/buttons/specs
*/
export declare const Button: import("react").ForwardRefExoticComponent<{
/**
* @default filled
*/
sd?: "text" | "filled" | "outlined" | "elevated" | "tonal" | undefined;
disabled?: boolean | undefined;
children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLButtonElement>, "ref" | "disabled" | "children" | "sd"> & import("react").RefAttributes<HTMLButtonElement>>;