Skip to content

Commit

Permalink
fix(toolbar-dropdown): remove a useless props
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Mar 28, 2024
1 parent 6d5a4cd commit 7586bdc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/fractal/src/components/Toolbar/Toolbar.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ export type ToolbarButtonProps = Omit<

export type ToolbarDropdownProps = Omit<
DropdownProps,
'children' | 'condensed' | 'trigger' | 'triggerAsButton'
| 'children'
| 'condensed'
| 'toggleOnTriggerClick'
| 'trigger'
| 'triggerAsButton'
> &
Pick<ToolbarButtonProps, 'active' | 'icon' | 'iconOnly' | 'iconPosition'> & {
/**
Expand Down

0 comments on commit 7586bdc

Please sign in to comment.