SettingsButton.js 697 B

1234567891011121314151617181920212223
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import FeatherIcon from 'react-native-vector-icons/Feather'
  4. import colors from '../../../theme/colors'
  5. import ButtonWrapper from '../../atoms/ButtonWrapper'
  6. const SettingsButton = ({onPress,buttonStyle,iconColor,iconSize}) => {
  7. return (
  8. <ButtonWrapper onPress={onPress} buttonStyle={buttonStyle}>
  9. <FeatherIcon name='settings' color={iconColor ? iconColor : styles.icon.color} size={iconSize ? iconSize : styles.icon.fontSize} />
  10. </ButtonWrapper>
  11. )
  12. }
  13. export default SettingsButton
  14. const styles = StyleSheet.create({
  15. icon:{
  16. fontSize: 20,
  17. color: colors.primaryColor
  18. }
  19. })