@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
13 lines • 373 B
TypeScript
import React from 'react';
import { ViewStyle, TextStyle } from 'react-native';
import { ButtonVariant } from './Button';
interface BadgeProps {
children: React.ReactNode;
variant?: ButtonVariant;
pill?: boolean;
style?: ViewStyle;
textStyle?: TextStyle;
}
export declare const Badge: React.FC<BadgeProps>;
export {};
//# sourceMappingURL=Badge.d.ts.map