@devloops/react-native-variant
Version:
react-native material ui library
16 lines (15 loc) • 479 B
TypeScript
import React from 'react';
import { ImageProps, StyleProp, ViewStyle } from 'react-native';
import { ThemeTypes } from '../../Theming';
export interface AvatarImageProps extends ImageProps {
elevation?: number;
size?: number;
containerStyle?: StyleProp<ViewStyle>;
padding?: number;
color?: string;
dense?: boolean;
theme?: ThemeTypes;
backgroundColor?: string;
}
declare const AvatarImage: React.FC<AvatarImageProps>;
export default AvatarImage;