import React from 'react'; import Svg, { Path } from 'react-native-svg'; import type { TabIconProps } from '@packages/shared'; 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;