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) 394 B
import * as React from 'react'; import {CommonProps} from '../../common/types'; import {LoreleiTypes} from '../utils/types'; interface LoreleiProps { defaultAvatar?: LoreleiTypes; skinTonColorList?: Array<string>; hairColorList?: Array<string>; backgroundColorList?: Array<string>; } declare const Lorelei: React.FunctionComponent<LoreleiProps & CommonProps>; export default Lorelei;