import { StyleSheet, Text, View } from 'react-native' import React from 'react' import MaterialIcon from 'react-native-vector-icons/MaterialIcons' import colors from '../../../theme/colors' import ButtonWrapper from '../../atoms/ButtonWrapper' const EditButton = (props) => { const { onPress, buttonStyle, iconColor, iconSize } = props return ( ) } export default EditButton const styles = StyleSheet.create({ icon:{ fontSize: 20, color: colors.primaryColor } })