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) • 501 B
TypeScript
/// <reference types="react" />
import './tooltip.scss';
/**
* @specs https://m3.material.io/components/tooltips/specs
*/
export declare const RichTooltip: import("react").ForwardRefExoticComponent<{
children?: React.ReactNode;
subhead?: React.ReactNode;
action?: React.ReactNode;
onActionClick?: (() => void) | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "action" | "children" | "onActionClick" | "subhead"> & import("react").RefAttributes<HTMLDivElement>>;