soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
18 lines (17 loc) • 599 B
TypeScript
/// <reference types="react" />
export declare const Ripple: import("react").ForwardRefExoticComponent<{
/**
* HTML tag name, div by default
*/
as?: keyof JSX.IntrinsicElements | undefined;
children?: React.ReactNode;
disabled?: boolean | undefined;
/**
* In ms
*/
rippleDuration?: number | undefined;
/**
* Any css color string
*/
rippleColor?: string | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "disabled" | "children" | "rippleDuration" | "rippleColor"> & import("react").RefAttributes<HTMLElement>>;