diff --git a/src/components/atoms/InputRange/InputRange.tsx b/src/components/atoms/InputRange/InputRange.tsx index d91bb39ae..3e91b8c39 100644 --- a/src/components/atoms/InputRange/InputRange.tsx +++ b/src/components/atoms/InputRange/InputRange.tsx @@ -12,8 +12,8 @@ export interface InputRange extends Omit, id?: string; min?: number; max?: number; - customPlusIcon?: JSX.Element; - customMinusIcon?: JSX.Element; + customPlusIcon?: React.SVGProps; //todo: type + customMinusIcon?: React.SVGProps; //todo: type step?: number; controls?: boolean; }