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

28 lines
632 B
JavaScript

function PozoQuickAddIcon({ fill = '#1292ee', className, style, onClick }) {
return (
<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>
);
}
export default PozoQuickAddIcon;