| 5 | import { getOffset } from '../util'; |
| 6 | |
| 7 | export interface TrackProps { |
| 8 | prefixCls: string; |
| 9 | style?: React.CSSProperties; |
| 10 | /** Replace with origin prefix concat className */ |
| 11 | replaceCls?: string; |
| 12 | start: number; |
| 13 | end: number; |
| 14 | index: number; |
| 15 | onStartMove?: OnStartMove; |
| 16 | } |
| 17 | |
| 18 | const Track: React.FC<TrackProps> = (props) => { |
| 19 | const { prefixCls, style, start, end, index, onStartMove, replaceCls } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected