Files
react-test/docs/data/joy/components/button-group/TooltipButtonGroup.tsx.preview

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

15 lines
442 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<ButtonGroup variant="soft" aria-label="tooltip button group">
<Tooltip arrow title="Go to profile">
<Button startDecorator={<Person />}>Hover me</Button>
</Tooltip>
<Tooltip arrow title="Open settings">
<span>
<IconButton disabled>
<Settings />
</IconButton>
</span>
</Tooltip>
<Tooltip arrow title="Go to profile">
<Button endDecorator={<Person />}>Hover me</Button>
</Tooltip>
</ButtonGroup>