Skip to content

Commit

Permalink
🔥 Remove input style prop (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
floriansimunek authored Sep 21, 2023
1 parent 4585803 commit ce8a7c1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const Input: React.FC<InputProps> = ({
value,
placeholder,
onChange,
style,
isDisabled,
isSearchable,
isRequired,
Expand All @@ -20,7 +19,6 @@ const Input: React.FC<InputProps> = ({
onChange={onChange}
className="select__menu--input"
data-testid="select__menu--input"
style={{ ...style }}
readOnly={!isSearchable}
disabled={isDisabled}
required={isRequired}
Expand Down

0 comments on commit ce8a7c1

Please sign in to comment.