import clsx from 'clsx'; import React from 'react'; // @todo: fix this properly export interface RangeInputProps extends React.InputHTMLAttributes { className?: string; } export function RangeInput({ className, ...restProps }: RangeInputProps) { return ( ); } export default RangeInput;