import React from 'react'; import { StyleSheet, TouchableOpacity } from 'react-native'; import { Icon } from '@rneui/themed'; import { useTheme } from '../themes'; const styles = StyleSheet.create({ ball: { width: 30, height: 30, borderRadius: 15, justifyContent: 'center', alignContent: 'center', }, }); const PlusIcon = props => { const { colors } = useTheme(); const stylesHook = StyleSheet.create({ ball: { backgroundColor: colors.buttonBackgroundColor, }, }); return ( ); }; export default PlusIcon;