grommet
Version:
focus on the essential experience
28 lines (22 loc) • 635 B
TypeScript
import * as React from 'react';
import { A11yTitleType, ColorType } from '../../utils';
interface ColorInterface {
color: ColorType;
value: number;
opacity?: number;
}
export interface RangeInputProps {
a11yTitle?: A11yTitleType;
id?: string;
min?: number | string;
max?: number | string;
name?: string;
step?: number;
color?: ColorType | ColorInterface[];
value?: number | string;
}
export interface RangeInputExtendedProps
extends RangeInputProps,
Omit<JSX.IntrinsicElements['input'], 'color' | 'step' | 'value'> {}
declare const RangeInput: React.FC<RangeInputExtendedProps>;
export { RangeInput };