MCPcopy
hub / github.com/react-component/slider / DotProps

Interface DotProps

src/Steps/Dot.tsx:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { getDirectionStyle } from '../util';
5
6export 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
13const Dot: React.FC<DotProps> = (props) => {
14 const { prefixCls, value, style, activeStyle } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected