soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
12 lines (11 loc) • 504 B
TypeScript
/// <reference types="react" />
/**
* This component is primary for internal use.
* This component has ref forwarded.
*/
export declare const ActionButton: import("react").ForwardRefExoticComponent<{
inverse?: boolean | undefined;
disabled?: boolean | undefined;
children?: React.ReactNode;
as?: keyof JSX.IntrinsicElements | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "disabled" | "children" | "inverse"> & import("react").RefAttributes<HTMLElement>>;