@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
28 lines • 1.38 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Shopping(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M19.917 13.766a.417.417 0 0 1 .408.5l-1.067 5.333a1.962 1.962 0 0 1-2.063 1.25H6.805a1.962 1.962 0 0 1-2.063-1.25l-1.067-5.333a.417.417 0 0 1 .408-.5h15.834zM8.162 15.231a.623.623 0 0 0-.53.706l.417 2.916a.625.625 0 0 0 .618.538.544.544 0 0 0 .088-.007.623.623 0 0 0 .53-.706l-.417-2.916a.622.622 0 0 0-.706-.531zm3.213 3.535a.625.625 0 0 0 1.25 0v-2.917a.625.625 0 1 0-1.25 0v2.917zm4.993-2.828a.625.625 0 1 0-1.236-.175l-.417 2.916a.623.623 0 0 0 .53.706.544.544 0 0 0 .09.007.625.625 0 0 0 .617-.538l.416-2.916zm3.965-6.755V9.18a1.667 1.667 0 1 1 0 3.333H3.667a1.667 1.667 0 0 1 0-3.333h.69a.033.033 0 0 0 .03-.02l2.5-5.416a1.042 1.042 0 1 1 1.892.873L6.811 8.887A.208.208 0 0 0 7 9.183h10a.208.208 0 0 0 .19-.296l-1.97-4.269a1.042 1.042 0 0 1 1.892-.871l2.5 5.416a.033.033 0 0 0 .031.02h.69z"
}));
}