@gzued/antd-compiled
Version:
Pre-bundled Ant Design 4.x and related dependencies for @gzued packages
11 lines (10 loc) • 390 B
TypeScript
import * as React from 'react';
import type { OnStartMove } from '../interface';
export interface TrackProps {
prefixCls: string;
style?: React.CSSProperties | React.CSSProperties[];
values: number[];
onStartMove?: OnStartMove;
startPoint?: number;
}
export default function Tracks(props: TrackProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;