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 and NWYLZW committed Jan 11, 2024
1 parent 51a0098 commit 9f58466
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 9f58466

Please sign in to comment.