Skip to content

Commit

Permalink
fix: fix help dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
mbret committed Jan 19, 2025
1 parent 435c3ab commit 3cf0079
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions packages/demo/src/reader/help/HelpDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import { List, ListIcon, ListItem } from "@chakra-ui/react"
import React from "react"
import { List } from "@chakra-ui/react"
import { LuCircleCheck } from "react-icons/lu"

export const HelpMenu = () => {
return (
<List spacing={3}>
<ListItem>
<ListIcon color="green.500" />
<List.Root gap={3} variant="plain">
<List.Item>
<List.Indicator asChild color="green.500">
<LuCircleCheck />
</List.Indicator>
Pinch to zoom on images.
</ListItem>
</List>
</List.Item>
</List.Root>
)
}

0 comments on commit 3cf0079

Please sign in to comment.