Skip to content

Commit

Permalink
Add tooltips to bottom bar menu
Browse files Browse the repository at this point in the history
  • Loading branch information
SawyerHood committed Jun 5, 2024
1 parent c3c394a commit 1782a65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/BottomBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ export function BottomBar() {
}}
value={selectedTool}
>
<ToggleGroupItem value="select" aria-label="Select">
<ToggleGroupItem value="select" aria-label="Select" title="Select">
<MousePointer2 className="h-4 w-4" />
</ToggleGroupItem>
<ToggleGroupItem value="hand" aria-label="hand">
<ToggleGroupItem value="hand" aria-label="hand" title="Pan">
<Hand className="h-4 w-4" />
</ToggleGroupItem>
<ToggleGroupItem value="browser" aria-label="browser">
<ToggleGroupItem value="browser" aria-label="browser" title="Browser">
<PanelTop className="h-4 w-4" />
</ToggleGroupItem>
<ToggleGroupItem value="prompt" aria-label="prompt">
<ToggleGroupItem value="prompt" aria-label="prompt" title="Prompt">
<ScrollText className="h-4 w-4" />
</ToggleGroupItem>
</ToggleGroup>
Expand Down

0 comments on commit 1782a65

Please sign in to comment.