UNPKG

@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.

22 lines 1.63 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Kiwicom(props) { const { color, size, customColor, className, dataTest } = props; return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: size, color: color, customColor: customColor, className: className, dataTest: dataTest }, 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.607.607 0 0 1-.19.445.616.616 0 0 1-.437.19.626.626 0 0 1-.44-.19l-2.83-2.823a.618.618 0 0 1-.184-.454.612.612 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.604.604 0 0 1-.447.18.598.598 0 0 1-.617-.62v-5.69c0-.352.265-.62.617-.62a.61.61 0 0 1 .441.181.623.623 0 0 1 .175.44zm10.923 2.345a.676.676 0 1 1-.001 1.352.676.676 0 0 1 0-1.352zm-.967 4.1c.273.203.332.59.128.864-.895 1.21-2.147 2.223-3.624 2.924-1.51.718-3.231 1.097-4.977 1.097-2.008 0-3.95-.494-5.612-1.425-1.638-.919-2.914-2.208-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 1 1-.995.73c-.772-1.052-1.866-1.935-3.162-2.552-1.348-.643-2.89-.982-4.458-.982-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.927 2.168 6.319 2.168 1.568 0 3.106-.339 4.451-.978 1.295-.615 2.388-1.494 3.161-2.543a.618.618 0 0 1 .863-.13z" })); }