import React from 'react'; import Svg, { Path } from 'react-native-svg'; interface OrderAgainIconProps { focused: boolean; size: number; color: string; } const OrderAgainIcon: React.FC = ({ focused, size, color }) => { const iconColor = focused ? '#2563EB' : '#2D264B'; // Use focused color when focused, original color when not return ( ); }; export default OrderAgainIcon;