Skip to content

Commit

Permalink
feat(dropdown.tsx): added isOpen to StyledArrowIconContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
j-leidy committed Jul 5, 2023
1 parent ab8cc0d commit 61e52f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ const Dropdown = ({
<Icon path={mdiClose} size="1em" />
</StyledCloseIconContainer>
)}
<StyledArrowIconContainer ref={arrowIconRef} {...arrowIconProps} arrowIconProps={{ isOpen }}>
<StyledArrowIconContainer ref={arrowIconRef} {...arrowIconProps} isOpen={{ isOpen }}>
<Icon path={isOpen ? mdiMenuUp : mdiMenuDown} size="1.25em" />
</StyledArrowIconContainer>
</>
Expand Down

0 comments on commit 61e52f4

Please sign in to comment.