Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Updated disabled icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzlamateen committed Aug 13, 2024
1 parent 3e77fe9 commit 06ce96b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ui/src/primitives/tailwind/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ const Select = <T extends OptionValueType>({
endComponent={
<MdOutlineKeyboardArrowDown
size="1.5em"
className={`mr-2 transition-transform ${showOptions.value ? 'rotate-180' : ''}`}
className={`mr-2 transition-transform ${showOptions.value ? 'rotate-180' : ''} ${
disabled ? 'opacity-50' : ''
}`}
onClick={() => {
if (!disabled) {
toggleDropdown()
Expand Down

0 comments on commit 06ce96b

Please sign in to comment.