Files
react-test/docs/data/material/components/tooltips/NonInteractiveTooltips.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
257 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Button from '@mui/material/Button';
import Tooltip from '@mui/material/Tooltip';
export default function NonInteractiveTooltips() {
return (
<Tooltip title="Add" disableInteractive>
<Button>Not interactive</Button>
</Tooltip>
);
}