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
17 lines (13 loc) • 418 B
TypeScript
import * as React from 'react';
import { StyleProp, TextStyle, ViewStyle } from 'react-native';
export interface OptionsListProps {
chipStyle?: StyleProp<ViewStyle>;
chipTextStyle?: StyleProp<TextStyle>;
onPress: (option: string) => void;
listOfElements: Array<string>;
bgColour?: string;
}
declare const OptionsList: React.MemoExoticComponent<
React.FC<OptionsListProps>
>;
export default OptionsList;