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

12 lines (8 loc) 279 B
import {FlatListProps} from 'react-native'; interface ColorListProps { colorList: string[]; flatListProps?: FlatListProps<string>; onPressItem: (selectedStyle: string) => void; } declare const ColorList: (props: ColorListProps) => JSX.Element; export default ColorList;