Android_Retail/src/Pages/BookingScreen/Components/UtillComponents/Pozo retail icons/PozoQuickAddIcon.jsx

28 lines
632 B
React
Raw Normal View History

2026-03-24 14:48:46 +05:30
function PozoQuickAddIcon({ fill = '#1292ee', className, style, onClick }) {
2026-01-27 18:27:29 +05:30
return (
2026-03-24 14:48:46 +05:30
<svg
width="45"
height="45"
viewBox="0 0 22 22"
className={className}
style={style}
onClick={onClick}
fill="none"
stroke={fill}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="10" cy="12" r="6" />
<line x1="10" y1="12" x2="10" y2="9" />
<line x1="10" y1="12" x2="13" y2="14" />
<line x1="18" y1="6" x2="18" y2="10" />
<line x1="16" y1="8" x2="20" y2="8" />
</svg>
2026-01-27 18:27:29 +05:30
);
}
export default PozoQuickAddIcon;