@ossamaweb/react-circular-input
Version:
Forked react-circular-input
14 lines (13 loc) • 369 B
TypeScript
import { Props as CircularTrackProps } from './CircularTrack';
type Props = JSX.IntrinsicElements['circle'] & CircularTrackProps & {
strokeDasharray?: undefined;
strokeDashoffset?: undefined;
transform?: undefined;
};
export declare const CircularProgress: {
(props: Props): JSX.Element;
defaultProps: {
stroke: string;
};
};
export {};