import React from 'react'; import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; import {useTracked} from '../../provider'; import {PressableButton} from '../PressableButton'; import {SIZE} from "../../utils/SizeUtils"; export const ActionIcon = ({ onPress, name, color, customStyle, size = SIZE.xxxl, iconStyle = {}, left = 10, right = 10, testID, }) => { const [state, dispatch] = useTracked(); const {colors} = state; return ( ); };