Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi6jp committed Jun 23, 2023
1 parent 624149d commit 9080c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dropdown/DropdownToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const DropdownToggle = ({
)
}

export type SummaryProps = ButtonProps
export type SummaryProps = Omit<ButtonProps, 'tag'>
export const Summary = forwardRef<HTMLElement, SummaryProps>(
(props, ref): JSX.Element => {
return <Button {...props} ref={ref} tag="summary" />
Expand Down

0 comments on commit 9080c64

Please sign in to comment.