Skip to content

Commit

Permalink
feat: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
charlielizzy committed Aug 5, 2024
1 parent 0507c01 commit 7d2aec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/atoms/InputRange/InputRange.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface InputRange extends Omit<InputHTMLAttributes<HTMLInputElement>,
id?: string;
min?: number;
max?: number;
customPlusIcon?: JSX.Element;
customMinusIcon?: JSX.Element;
customPlusIcon?: React.SVGProps<SVGSVGElement>; //todo: type
customMinusIcon?: React.SVGProps<SVGSVGElement>; //todo: type
step?: number;
controls?: boolean;
}
Expand Down

0 comments on commit 7d2aec0

Please sign in to comment.