| 4 | import { getDirectionStyle } from '../util'; |
| 5 | |
| 6 | export interface DotProps { |
| 7 | prefixCls: string; |
| 8 | value: number; |
| 9 | style?: React.CSSProperties | ((dotValue: number) => React.CSSProperties); |
| 10 | activeStyle?: React.CSSProperties | ((dotValue: number) => React.CSSProperties); |
| 11 | } |
| 12 | |
| 13 | const Dot: React.FC<DotProps> = (props) => { |
| 14 | const { prefixCls, value, style, activeStyle } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected