Tooltip API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import Tooltip from '@mui/material/Tooltip';
// or
import { Tooltip } from '@mui/material';Props
Props of the native component are also available.
| Name | Type | Default | Description | 
|---|---|---|---|
| children* | element | Tooltip reference element. ⚠️ Needs to be able to hold a ref. | |
| arrow | bool | false | If  true, adds an arrow to the tooltip. | 
| classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
| components | { Arrow?: elementType, Popper?: elementType, Tooltip?: elementType, Transition?: elementType } | {} | The components used for each slot inside. This prop is an alias for the slotsprop. It's recommended to use theslotsprop instead. | 
| componentsProps | { arrow?: object, popper?: object, tooltip?: object, transition?: object } | {} | The extra props for the slot components. You can override the existing props or add new ones. This prop is an alias for the slotPropsprop. It's recommended to use theslotPropsprop instead, ascomponentsPropswill be deprecated in the future. | 
| describeChild | bool | false | Set to  trueif thetitleacts as an accessible description. By default thetitleacts as an accessible label for the child. | 
| disableFocusListener | bool | false | Do not respond to focus-visible events. | 
| disableHoverListener | bool | false | Do not respond to hover events. | 
| disableInteractive | bool | false | Makes a tooltip not interactive, i.e. it will close when the user hovers over the tooltip before the  leaveDelayis expired. | 
| disableTouchListener | bool | false | Do not respond to long press touch events. | 
| enterDelay | number | 100 | The number of milliseconds to wait before showing the tooltip. This prop won't impact the enter touch delay ( enterTouchDelay). | 
| enterNextDelay | number | 0 | The number of milliseconds to wait before showing the tooltip when one was already recently opened. | 
| enterTouchDelay | number | 700 | The number of milliseconds a user must touch the element before showing the tooltip. | 
| followCursor | bool | false | If  true, the tooltip follow the cursor over the wrapped element. | 
| id | string | This prop is used to help implement the accessibility logic. If you don't provide this prop. It falls back to a randomly generated id. | |
| leaveDelay | number | 0 | The number of milliseconds to wait before hiding the tooltip. This prop won't impact the leave touch delay ( leaveTouchDelay). | 
| leaveTouchDelay | number | 1500 | The number of milliseconds after the user stops touching an element before hiding the tooltip. | 
| onClose | func | Callback fired when the component requests to be closed. Signature: function(event: React.SyntheticEvent) => voidevent: The event source of the callback. | |
| onOpen | func | Callback fired when the component requests to be open. Signature: function(event: React.SyntheticEvent) => voidevent: The event source of the callback. | |
| open | bool | If  true, the component is shown. | |
| placement | 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top' | 'bottom' | Tooltip placement. | 
| PopperComponent | elementType | Popper | The component used for the popper. | 
| PopperProps | object | {} | Props applied to the  Popperelement. | 
| slotProps | { arrow?: object, popper?: object, tooltip?: object, transition?: object } | {} | The extra props for the slot components. You can override the existing props or add new ones. This prop is an alias for the componentsPropsprop, which will be deprecated in the future. | 
| slots | { arrow?: elementType, popper?: elementType, tooltip?: elementType, transition?: elementType } | {} | The components used for each slot inside. This prop is an alias for the componentsprop, which will be deprecated in the future. | 
| sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. | |
| title | node | Tooltip title. Zero-length titles string, undefined, null and false are never displayed. | |
| TransitionComponent | elementType | Grow | The component used for the transition. Follow this guide to learn more about the requirements for this component. | 
| TransitionProps | object | Props applied to the transition element. By default, the element is based on this  Transitioncomponent. | 
The
ref is forwarded to the root element.Theme default props
You can useMuiTooltip to change the default props of this component with the theme.CSS
The following class names are useful for styling with CSS (the state classes are marked). 
 To learn more, visit the component customization page.
| Rule name | Global class | Description | 
|---|---|---|
| popper | .MuiTooltip-popper | Styles applied to the Popper component. | 
| popperInteractive | .MuiTooltip-popperInteractive | Styles applied to the Popper component unless disableInteractive={true}. | 
| popperArrow | .MuiTooltip-popperArrow | Styles applied to the Popper component if arrow={true}. | 
| popperClose | .MuiTooltip-popperClose | Styles applied to the Popper component unless the tooltip is open. | 
| tooltip | .MuiTooltip-tooltip | Styles applied to the tooltip (label wrapper) element. | 
| tooltipArrow | .MuiTooltip-tooltipArrow | Styles applied to the tooltip (label wrapper) element if arrow={true}. | 
| arrow | .MuiTooltip-arrow | Styles applied to the arrow element. | 
| touch | .MuiTooltip-touch | Styles applied to the tooltip (label wrapper) element if the tooltip is opened by touch. | 
| tooltipPlacementLeft | .MuiTooltip-tooltipPlacementLeft | Styles applied to the tooltip (label wrapper) element if placementcontains "left". | 
| tooltipPlacementRight | .MuiTooltip-tooltipPlacementRight | Styles applied to the tooltip (label wrapper) element if placementcontains "right". | 
| tooltipPlacementTop | .MuiTooltip-tooltipPlacementTop | Styles applied to the tooltip (label wrapper) element if placementcontains "top". | 
| tooltipPlacementBottom | .MuiTooltip-tooltipPlacementBottom | Styles applied to the tooltip (label wrapper) element if placementcontains "bottom". | 
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's styleOverridesproperty in a custom theme.