@devloops/react-native-variant
Version:
react-native material ui library
19 lines (18 loc) • 565 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle, ImageStyle } from 'react-native';
import { TextProps } from '../Core/Typography';
import { ThemeTypes } from '../../Theming';
export interface AvatarTextProps {
elevation?: number;
size?: number;
style?: StyleProp<ImageStyle>;
containerStyle?: StyleProp<ViewStyle>;
padding?: number;
color?: string;
backgroundColor?: string;
label?: string;
theme?: ThemeTypes;
textProps?: TextProps;
}
declare const AvatarText: React.FC<AvatarTextProps>;
export default AvatarText;