@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.51 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Compare(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: "M13.667 7.833h7.5c.5 0 .833.334.833.834s-.333.833-.833.833h-7.5v4.917c0 .916-.75 1.666-1.667 1.666v4.084a.18.18 0 0 0 .167.166h9c.5 0 .833.334.833.834s-.333.833-.833.833H12c-.917 0-1.667-.75-1.667-1.667v-4.25h-7.5c-.5 0-.833-.333-.833-.833s.333-.833.833-.833h9A.18.18 0 0 0 12 14.25V3.833a.18.18 0 0 0-.167-.166h-9c-.5 0-.833-.334-.833-.834S2.417 2 2.833 2H12c.917 0 1.667.75 1.667 1.667v4.166zm-4 1.834L6.75 12.584a.757.757 0 0 1-.583.25c-.5 0-.833-.334-.833-.834v-1.5c0-.083-.084-.166-.25-.166H3.25c-.666 0-1.25-.584-1.25-1.25s.584-1.25 1.25-1.25h1.917a.18.18 0 0 0 .167-.167v-1.5c0-.25.083-.417.25-.583a.806.806 0 0 1 1.166 0L9.667 8.5a.805.805 0 0 1 0 1.167zm4.666 4.666l2.917-2.916a.757.757 0 0 1 .583-.25c.5 0 .834.333.834.833v1.5c0 .084.083.167.166.167h1.834c.666 0 1.25.583 1.25 1.25s-.584 1.25-1.25 1.25h-1.834a.18.18 0 0 0-.166.166v1.5c0 .25-.083.417-.25.583a.806.806 0 0 1-1.167 0L14.333 15.5a.807.807 0 0 1 0-1.167z"
}));
}