react-circular-input
Version:
React components for easily composing a circular range input
15 lines (14 loc) • 409 B
TypeScript
/// <reference types="react" />
import { Props as CircularTrackProps } from './CircularTrack';
declare type Props = JSX.IntrinsicElements['circle'] & CircularTrackProps & {
strokeDasharray?: undefined;
strokeDashoffset?: undefined;
transform?: undefined;
};
export declare const CircularProgress: {
(props: Props): JSX.Element;
defaultProps: {
stroke: string;
};
};
export {};