@netdata/netdata-ui
Version:
netdata UI kit
21 lines (16 loc) • 462 B
TypeScript
import { FC, SyntheticEvent } from "react"
export interface MultiRangeInputProps {
"data-testid"?: string
initMax?: number
initMin?: number
max?: number
min?: number
onChange: ({ max, min }) => void
onClick?: (e: SyntheticEvent<HTMLButtonElement>) => void
onInput?: ({ max, min }) => void
step?: number
TextComponent?: FC
}
declare const MultiRangeInput: FC<MultiRangeInputProps>
export { MultiRangeInput }
export default MultiRangeInput