UNPKG

react-native-playful-avatar

Version:
18 lines 824 B
import type { TAvatarAccessory, TAvatarBackgroundShape, TAvatarEyes, TAvatarFace, TAvatarHaircut, TAvatarMouth, TAvatarOutfit } from './types'; import { type ViewStyle } from 'react-native'; interface PlayfulAvatarProps { style: ViewStyle; backgroundColor?: string; backgroundShape?: TAvatarBackgroundShape; accessory?: TAvatarAccessory; eyes?: TAvatarEyes; face?: TAvatarFace; faceColor?: string; mouth?: TAvatarMouth; outfit?: TAvatarOutfit; haircut?: TAvatarHaircut; haircutColor?: string; } declare const PlayfulAvatar: ({ style, backgroundColor, backgroundShape, accessory, eyes, face, faceColor, mouth, outfit, haircut, haircutColor, }: PlayfulAvatarProps) => import("react/jsx-runtime").JSX.Element; export default PlayfulAvatar; //# sourceMappingURL=PlayfulAvatar.d.ts.map