@rneui/base
Version:
Cross Platform React Native UI Toolkit
15 lines (14 loc) • 646 B
TypeScript
import React from 'react';
import { ImageProps as RNImageProps, StyleProp, ViewStyle } from 'react-native';
import { InlinePressableProps, RneFunctionComponent } from '../helpers';
export interface ImageProps extends RNImageProps, InlinePressableProps {
Component?: typeof React.Component;
ImageComponent?: typeof React.Component;
PlaceholderContent?: React.ReactElement;
containerStyle?: StyleProp<ViewStyle>;
childrenContainerStyle?: StyleProp<ViewStyle>;
placeholderStyle?: StyleProp<ViewStyle>;
transition?: boolean;
transitionDuration?: number;
}
export declare const Image: RneFunctionComponent<ImageProps>;