@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
30 lines • 866 B
TypeScript
import React from 'react';
import { ViewStyle, TextStyle } from 'react-native';
interface ListGroupProps {
children: React.ReactNode;
flush?: boolean;
numbered?: boolean;
horizontal?: boolean;
style?: ViewStyle;
}
interface ListGroupItemProps {
children: React.ReactNode;
active?: boolean;
disabled?: boolean;
variant?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark';
action?: boolean;
onPress?: () => void;
style?: ViewStyle;
textStyle?: TextStyle;
}
export declare const ListGroup: React.FC<ListGroupProps>;
export declare const ListGroupItem: React.FC<ListGroupItemProps & {
_isFirst?: boolean;
_isLast?: boolean;
_numbered?: boolean;
_index?: number;
_flush?: boolean;
_horizontal?: boolean;
}>;
export {};
//# sourceMappingURL=ListGroup.d.ts.map