Skip to content

Commit

Permalink
fix: added style type back inside of input component
Browse files Browse the repository at this point in the history
  • Loading branch information
aizad-deriv committed Feb 2, 2024
1 parent dd8f65e commit fd763aa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/components/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ export type InputVariants =
| "error"
| "warning"
| "disabled";
interface InputProps
extends Omit<ComponentProps<"input">, "style" | "placeholder"> {
interface InputProps extends Omit<ComponentProps<"input">, "placeholder"> {
label?: string;
leftPlaceholder?: ReactNode;
rightPlaceholder?: ReactNode;
Expand Down

0 comments on commit fd763aa

Please sign in to comment.