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

18 lines 528 B
import React from 'react'; import { ViewStyle, TextStyle } from 'react-native'; interface BreadcrumbProps { children: React.ReactNode; divider?: string; style?: ViewStyle; } interface BreadcrumbItemProps { children: React.ReactNode; active?: boolean; onPress?: () => void; style?: ViewStyle; textStyle?: TextStyle; } export declare const Breadcrumb: React.FC<BreadcrumbProps>; export declare const BreadcrumbItem: React.FC<BreadcrumbItemProps>; export {}; //# sourceMappingURL=Breadcrumb.d.ts.map