import clsx from 'clsx'; import * as React from 'react'; import styles from './input-range.module.scss'; interface InputRangeProps { onChange: React.ChangeEventHandler; title?: string; value: number | string; className?: string; min: string; max: string; step: string; aria: string; } export function InputRange({ onChange, title, value, className, min, max, step, aria, }: InputRangeProps) { return (
{title || value}
); }