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