@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.85 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Kiwicom(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: "M14.79 8.984a.6.6 0 0 1 0 .876l-2.405 2.4 2.405 2.398c.12.12.187.272.19.43a.606.606 0 0 1-.19.445.615.615 0 0 1-.437.19.625.625 0 0 1-.44-.19l-2.83-2.823a.618.618 0 0 1-.184-.454.611.611 0 0 1 .183-.447l2.83-2.825a.623.623 0 0 1 .44-.19c.162 0 .314.066.438.19zm-4.273.43v5.69a.63.63 0 0 1-.169.439.605.605 0 0 1-.447.18.598.598 0 0 1-.617-.62V9.414c0-.353.265-.62.617-.62.17 0 .327.064.441.18a.623.623 0 0 1 .175.44zm10.923 2.345a.676.676 0 0 1 .675.676.677.677 0 0 1-1.35 0c0-.372.303-.676.675-.676zm-.967 4.1c.273.203.332.59.128.864-.894 1.21-2.147 2.223-3.623 2.924-1.511.718-3.232 1.097-4.978 1.097-2.009 0-3.95-.494-5.612-1.425-1.639-.919-2.914-2.207-3.69-3.726a7.31 7.31 0 0 1-.813-3.35c0-1.162.274-2.288.814-3.348.517-1.015 1.254-1.923 2.192-2.7C6.796 4.614 9.32 3.743 12 3.743c1.75 0 3.474.38 4.988 1.101 1.479.706 2.733 1.72 3.626 2.937a.617.617 0 0 1-.132.863.613.613 0 0 1-.365.12.618.618 0 0 1-.498-.253c-.772-1.052-1.866-1.935-3.162-2.553-1.348-.641-2.89-.981-4.458-.981-1.798 0-3.53.437-5.008 1.267-1.426.8-2.53 1.91-3.193 3.21a6.094 6.094 0 0 0-.68 2.789c.002.964.23 1.903.68 2.787.44.864 1.071 1.641 1.88 2.31 1.681 1.399 3.926 2.167 6.319 2.167 1.568 0 3.106-.338 4.45-.977 1.296-.615 2.389-1.494 3.162-2.543a.618.618 0 0 1 .497-.25.61.61 0 0 1 .366.12z"
}));
}