Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
20 lines
581 B
JavaScript
20 lines
581 B
JavaScript
import Box from '@mui/joy/Box';
|
|
import Tooltip from '@mui/joy/Tooltip';
|
|
import Button from '@mui/joy/Button';
|
|
|
|
export default function TooltipSizes() {
|
|
return (
|
|
<Box sx={{ display: 'flex', gap: 4, width: '100%', justifyContent: 'center' }}>
|
|
<Tooltip title="Delete" size="sm">
|
|
<Button variant="plain">Small</Button>
|
|
</Tooltip>
|
|
<Tooltip title="Delete" size="md">
|
|
<Button variant="plain">Medium</Button>
|
|
</Tooltip>
|
|
<Tooltip title="Delete" size="lg">
|
|
<Button variant="plain">Large</Button>
|
|
</Tooltip>
|
|
</Box>
|
|
);
|
|
}
|