@teamsnap/teamsnap-ui
Version:
a CSS component library for TeamSnap
25 lines (24 loc) • 803 B
TypeScript
import * as React from "react";
import * as PropTypes from "prop-types";
declare class RadialProgress extends React.PureComponent<PropTypes.InferProps<typeof RadialProgress.propTypes>, any> {
static propTypes: {
progress: PropTypes.Requireable<number>;
size: PropTypes.Requireable<string>;
color: PropTypes.Requireable<string>;
className: PropTypes.Requireable<string>;
mods: PropTypes.Requireable<string>;
style: PropTypes.Requireable<object>;
otherProps: PropTypes.Requireable<object>;
};
static defaultProps: {
progress: number;
size: any;
color: any;
className: string;
mods: any;
style: {};
otherProps: {};
};
render(): JSX.Element;
}
export default RadialProgress;