UNPKG

@devloops/react-native-variant

Version:
18 lines (17 loc) 666 B
import React from 'react'; import { StyleProp, ViewStyle, ImageStyle } from 'react-native'; import { ThemeTypes } from '../../Theming'; export interface AvatarIconProps { elevation?: number; size?: number; style?: StyleProp<ImageStyle>; containerStyle?: StyleProp<ViewStyle>; padding?: number; color?: string; icon?: string; backgroundColor?: string; theme?: ThemeTypes; iconFontFamily?: 'materialCommunity' | 'material' | 'simpleLine' | 'fa' | 'fa5' | 'fa5pro' | 'foundation' | 'evil' | 'octicons' | 'ionic' | 'feather' | 'entypo' | 'zocial'; } declare const AvatarIcon: React.FC<AvatarIconProps>; export default AvatarIcon;