@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
17 lines • 517 B
TypeScript
import React from 'react';
import { ViewStyle, TextStyle } from 'react-native';
import { ButtonVariant } from './Button';
interface SpinnerProps {
variant?: ButtonVariant;
size?: 'small' | 'large';
style?: ViewStyle;
}
interface LoadingProps extends SpinnerProps {
children?: React.ReactNode;
textStyle?: TextStyle;
overlay?: boolean;
}
export declare const Spinner: React.FC<SpinnerProps>;
export declare const Loading: React.FC<LoadingProps>;
export {};
//# sourceMappingURL=Spinner.d.ts.map