import React from 'react'; import Svg, { Path } from 'react-native-svg'; import type { TabIconProps } from '@packages/shared'; const OffersIcon: React.FC = ({ focused, size, color }) => { if (focused) { // Selected state SVG (filled offer tag) return ( ); } else { // Unselected state SVG (outlined offer tag) return ( ); } }; export default OffersIcon;