@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 • 892 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Deals(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: "M2.876 11.473l10.121 9.942.015.014a1.719 1.719 0 0 0 2.413-.018l6.071-6.07a1.719 1.719 0 0 0-.01-2.441L11.399 2.98c-.016-.017-.03-.032-.047-.047a3.224 3.224 0 0 0-2.054-.843h-5.58C2.77 2.09 2 2.86 2 3.809l.006 5.581a3.252 3.252 0 0 0 .87 2.083zm2.991-4.227a1.289 1.289 0 1 1 2.578 0 1.289 1.289 0 0 1-2.578 0z"
}));
}