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

13 lines (9 loc) 333 B
import {StyleProp, ViewStyle} from 'react-native'; export interface PressableContainerProps { onPressCancel: () => void; onPressDone: () => void; cancelBtnStyle?: StyleProp<ViewStyle>; doneBtnStyle?: StyleProp<ViewStyle>; } declare const PressableContainer: React.FC<PressableContainerProps>; export {PressableContainer};