react-native-circular-progress-indicator
Version:
React Native customizable circular progress indicator
21 lines (20 loc) • 522 B
TypeScript
import type { TextStyle } from 'react-native';
declare type StyleProps = {
radius: number;
progressValueColor?: string;
progressValueFontSize?: number;
progressValueStyle?: TextStyle;
activeStrokeColor?: string;
};
declare const styles: (props: StyleProps) => {
fromProps: {
fontSize: number;
color: import("react-native").ColorValue | undefined;
};
input: {
fontWeight: "bold";
textAlign: "center";
padding: number;
};
};
export default styles;