@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
49 lines (48 loc) • 2.27 kB
TypeScript
export interface TooltipClasses {
/** Class name applied to the root element. */
root: string;
/** Class name applied to the root element if `arrow={true}`. */
tooltipArrow: string;
/** Class name applied to the arrow element. */
arrow: string;
/** Class name applied to the root element if the tooltip is opened by touch. */
touch: string;
/** Class name applied to the root element if `placement` contains "left". */
placementLeft: string;
/** Class name applied to the root element if `placement` contains "right". */
placementRight: string;
/** Class name applied to the root element if `placement` contains "top". */
placementTop: string;
/** Class name applied to the root element if `placement` contains "bottom". */
placementBottom: string;
/** Class name applied to the root element if `color="primary"`. */
colorPrimary: string;
/** Class name applied to the root element if `color="danger"`. */
colorDanger: string;
/** Class name applied to the root element if `color="neutral"`. */
colorNeutral: string;
/** Class name applied to the root element if `color="success"`. */
colorSuccess: string;
/** Class name applied to the root element if `color="warning"`. */
colorWarning: string;
/** Class name applied to the root element when color inversion is triggered. */
colorContext: string;
/** Class name applied to the root element if `size="sm"`. */
sizeSm: string;
/** Class name applied to the root element if `size="md"`. */
sizeMd: string;
/** Class name applied to the root element if `size="lg"`. */
sizeLg: string;
/** Class name applied to the root element if `variant="plain"`. */
variantPlain: string;
/** Class name applied to the root element if `variant="outlined"`. */
variantOutlined: string;
/** Class name applied to the root element if `variant="soft"`. */
variantSoft: string;
/** Class name applied to the root element if `variant="solid"`. */
variantSolid: string;
}
export type TooltipClassKey = keyof TooltipClasses;
export declare function getTooltipUtilityClass(slot: string): string;
declare const tooltipClasses: TooltipClasses;
export default tooltipClasses;