UNPKG

react-native-modern-elements

Version:

A modern, customizable UI component library for React Native

20 lines (19 loc) 566 B
import React from "react"; import { TextStyle } from "react-native"; interface RadialProgressProps { percentage?: number; Radialsize?: number; strokeWidths?: number; percentageTextSize?: number; percentageTextFontWeight?: TextStyle["fontWeight"]; strokeLinecap?: "butt" | "square" | "round"; animationDuration?: number; color?: { low?: string; medium?: string; high?: string; veryHigh?: string; }; } declare const _default: React.NamedExoticComponent<RadialProgressProps>; export default _default;