UNPKG

rn-customize-avatar

Version:

This package is inspired by whatsapp, instagram custom avatar. You can customize your own avatar and use as a profile in your project

14 lines (11 loc) 392 B
import * as React from 'react'; import {CommonProps} from '../../common/types'; import {BigEarsType} from '../utils/types'; interface BigEarsProps { defaultAvatar?: BigEarsType; skinTonColorList?: Array<string>; hairColorList?: Array<string>; backgroundColorList?: Array<string>; } declare const BigEars: React.FunctionComponent<BigEarsProps & CommonProps>; export default BigEars;