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