UNPKG

333 BTypeScriptView Raw
1import * as React from 'react';
2export interface DotProps {
3 prefixCls: string;
4 value: number;
5 style?: React.CSSProperties | ((dotValue: number) => React.CSSProperties);
6 activeStyle?: React.CSSProperties | ((dotValue: number) => React.CSSProperties);
7}
8export default function Dot(props: DotProps): React.JSX.Element;
9
\No newline at end of file