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

28 lines 789 B
import React from 'react'; import { ViewStyle, TextStyle } from 'react-native'; interface PaginationProps { children: React.ReactNode; size?: 'sm' | 'lg'; style?: ViewStyle; } interface PaginationItemProps { children: React.ReactNode; active?: boolean; disabled?: boolean; onPress?: () => void; style?: ViewStyle; textStyle?: TextStyle; } interface PaginationLinkProps { children: React.ReactNode; onPress?: () => void; style?: ViewStyle; textStyle?: TextStyle; } export declare const Pagination: React.FC<PaginationProps>; export declare const PaginationItem: React.FC<PaginationItemProps & { _size?: number; }>; export declare const PaginationLink: React.FC<PaginationLinkProps>; export {}; //# sourceMappingURL=Pagination.d.ts.map