Skip to content

Commit

Permalink
fix(Select): fix custom colors (#22)
Browse files Browse the repository at this point in the history
* fix(Select): fix custom colors

* fix(Select): border color
  • Loading branch information
tjbo committed Oct 3, 2021
1 parent 6054fc9 commit 8d9182e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Components/Chakra__Select.res
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,9 @@ let makeProps = (
/**
Component Props {Select}
**/

~errorBorderColor=?,
~focusBorderColor=?,
~iconColor=?,
~variant=?,
/**
Margin and Padding
Expand Down Expand Up @@ -628,6 +630,9 @@ let makeProps = (
/**
Component Props {Select}
**/
~errorBorderColor=?errorBorderColor->BorderColor.fromOption,
~focusBorderColor=?focusBorderColor->BorderColor.fromOption,
~iconColor=?iconColor->Color.fromOption,
~variant=?variant->Select.Variant.fromOption,
/**
Margin and Padding
Expand Down

0 comments on commit 8d9182e

Please sign in to comment.