import React from 'react'; import Svg, { Path } from 'react-native-svg'; interface CartIconProps { focused: boolean; size: number; color: string; } const CartIcon: React.FC = ({ focused, size, color }) => { if (focused) { // Focused state SVG (cart without handle) return ( ); } else { // Unfocused state SVG (full cart) return ( ); } }; export default CartIcon;