react-base-guide
Version:
react ui components
16 lines (15 loc) • 423 B
TypeScript
import { InputHTMLAttributes } from "react";
import { StyleProps } from "../../utils/add-custom-style";
interface RangeProps extends InputHTMLAttributes<HTMLInputElement> {
value?: number;
min?: number;
max?: number;
step?: number;
count?: boolean;
styled?: StyleProps;
}
interface ThumbProps {
left?: string | number;
disabled?: boolean;
}
export { RangeProps, ThumbProps };