@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
42 lines • 1.2 kB
TypeScript
import React from 'react';
import { ViewStyle, TextStyle, ImageStyle, ImageSourcePropType } from 'react-native';
interface CardProps {
children?: React.ReactNode;
style?: ViewStyle;
}
interface CardHeaderProps {
children: React.ReactNode;
style?: ViewStyle;
textStyle?: TextStyle;
}
interface CardBodyProps {
children: React.ReactNode;
style?: ViewStyle;
}
interface CardFooterProps {
children: React.ReactNode;
style?: ViewStyle;
}
interface CardImageProps {
source: ImageSourcePropType;
style?: ImageStyle;
top?: boolean;
bottom?: boolean;
}
interface CardTitleProps {
children: React.ReactNode;
style?: TextStyle;
}
interface CardTextProps {
children: React.ReactNode;
style?: TextStyle;
}
export declare const Card: React.FC<CardProps>;
export declare const CardHeader: React.FC<CardHeaderProps>;
export declare const CardBody: React.FC<CardBodyProps>;
export declare const CardFooter: React.FC<CardFooterProps>;
export declare const CardImage: React.FC<CardImageProps>;
export declare const CardTitle: React.FC<CardTitleProps>;
export declare const CardText: React.FC<CardTextProps>;
export {};
//# sourceMappingURL=Card.d.ts.map