<Box
sx={{
display: 'flex',
flexDirection: 'column',
gap: 8,
marginY: 4,
'[data-component=tooltip]': {visibility: 'visible', opacity: 1}
}}
>
<Box sx={{display: 'flex', justifyContent: 'space-between', gap: 1}}>
<Tooltip direction="nw" text="Tooltip text">
<Button>North west</Button>
</Tooltip>
<Tooltip direction="n" text="Tooltip text">
<Button>North</Button>
</Tooltip>
<Tooltip direction="ne" text="Tooltip text">
<Button>North east</Button>
</Tooltip>
</Box>
<Box sx={{display: 'flex', justifyContent: 'space-between', gap: 1}}>
<Tooltip direction="e" text="Tooltip text">
<Button>East</Button>
</Tooltip>
<Tooltip direction="w" text="Tooltip text">
<Button>West</Button>
</Tooltip>
</Box>
<Box sx={{display: 'flex', justifyContent: 'space-between', gap: 1}}>
<Tooltip direction="sw" text="Tooltip text">
<Button>South west</Button>
</Tooltip>
<Tooltip direction="s" text="Tooltip text">
<Button>South</Button>
</Tooltip>
<Tooltip direction="se" text="Tooltip text">
<Button>South east</Button>
</Tooltip>
</Box>
</Box>