Skip to content

Commit

Permalink
fix(dropdown): dropdown item missing divider props declaration (#2649)
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn authored Dec 6, 2023
1 parent c31a0e2 commit ca98d46
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dropdown/DropdownItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ type DropdownItemProps = Pick<DropdownOption, 'value'> &
prefixIcon?: React.ReactNode;
onClick?: (value: DropdownOption['value'], e: unknown) => void;
isSubmenu?: boolean;
divider?: boolean;
};

const DropdownItem = forwardRef<HTMLLIElement, DropdownItemProps>((props, ref: RefObject<HTMLLIElement>) => {
Expand Down

0 comments on commit ca98d46

Please sign in to comment.