UNPKG

@devloops/react-native-variant

Version:
16 lines (15 loc) 479 B
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;