reablocks
Version:
Component library for React
10 lines (9 loc) • 331 B
TypeScript
export interface TooltipTheme {
/** CSS class applied to the root tooltip container. */
base: string;
/** CSS class applied to disable pointer events on the tooltip. */
disablePointer: string;
/** CSS class applied to the tooltip arrow. */
arrow?: string;
}
export declare const tooltipTheme: TooltipTheme;