Skip to content

Commit

Permalink
fix tooltip (#44)
Browse files Browse the repository at this point in the history
* update tooltip types

* add changesets
  • Loading branch information
gelicamarie authored Aug 26, 2023
1 parent 9562b92 commit 3773dd7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/yellow-lemons-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@groupos/ui-components': patch
---

update tooltip props
2 changes: 1 addition & 1 deletion packages/components/src/tooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Tooltip = ({
...props
}: {
children: React.ReactNode
} & Omit<React.ComponentProps<typeof Root>, 'open'>) => {
} & React.ComponentProps<typeof Root>) => {
return <Root {...props}>{children}</Root>
}

Expand Down

0 comments on commit 3773dd7

Please sign in to comment.