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
15 lines (12 loc) • 413 B
TypeScript
import * as React from 'react';
import {CommonProps} from '../../common/types';
import {MicahType} from '../utils/types';
interface MicahProps {
defaultAvatar?: MicahType;
skinTonColorList?: Array<string>;
hairColorList?: Array<string>;
backgroundColorList?: Array<string>;
baseColorList?: Array<string>;
}
declare const Micah: React.FunctionComponent<MicahProps & CommonProps>;
export default Micah;