UNPKG

@whitemordred/react-native-bootstrap5

Version:

A complete React Native library that replicates Bootstrap 5.3 with 100% feature parity, full theming support, CSS variables, and dark/light mode

24 lines 754 B
import React from 'react'; import { ViewStyle } from 'react-native'; interface ProgressProps { value: number; max?: number; variant?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark'; striped?: boolean; animated?: boolean; height?: number; label?: string; style?: ViewStyle; } interface ProgressBarProps { value: number; max?: number; variant?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark'; striped?: boolean; animated?: boolean; style?: ViewStyle; } export declare const Progress: React.FC<ProgressProps>; export declare const ProgressBar: React.FC<ProgressBarProps>; export {}; //# sourceMappingURL=Progress.d.ts.map