@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
23 lines • 727 B
TypeScript
import React from 'react';
import { ImageProps as RNImageProps, ViewStyle, ImageStyle, TextStyle } from 'react-native';
interface ImageProps extends Omit<RNImageProps, 'style'> {
fluid?: boolean;
rounded?: boolean;
roundedCircle?: boolean;
thumbnail?: boolean;
style?: ImageStyle;
containerStyle?: ViewStyle;
}
interface FigureProps {
children: React.ReactNode;
style?: ViewStyle;
}
interface FigureCaptionProps {
children: React.ReactNode;
style?: TextStyle;
}
export declare const Image: React.FC<ImageProps>;
export declare const Figure: React.FC<FigureProps>;
export declare const FigureCaption: React.FC<FigureCaptionProps>;
export default Image;
//# sourceMappingURL=Image.d.ts.map