Skip to content

Commit

Permalink
fix: omit children
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanwikner committed Dec 20, 2024
1 parent 2266c8c commit ab3bbd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/components/popover-button/types.ts
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import {PopoverProps} from '../../primitives'
* @beta
*/
export interface PopoverButtonProps
extends Omit<PopoverProps, 'content' | 'open' | 'referenceElement'> {
extends Omit<PopoverProps, 'children' | 'content' | 'open' | 'referenceElement'> {
/**
* ARIA attribute for the button element.
*/

0 comments on commit ab3bbd4

Please sign in to comment.