import cx from 'classnames'; export type PointId = 'point-left' | 'point-right' | 'point-single'; export interface ISliderPointProps { value: number; disabled?: boolean; position: string; active: boolean; } function SliderPoint(props: ISliderPointProps) { const { value, position, disabled, active } = props; return (