UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

21 lines (19 loc) 1.71 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./Partners.js.flow"; export default function Partners(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <path d="M21.362 7.379h-1.755a1.771 1.771 0 0 0-.766.18.213.213 0 0 1-.17.006l-3.66-1.4a2.829 2.829 0 0 0-2.19.121l-1.807.877a.214.214 0 0 1-.205-.008 2.534 2.534 0 0 0-2.248-.17L6.014 8.071a.212.212 0 0 1-.245-.057 1.807 1.807 0 0 0-1.376-.635H2.638A.638.638 0 0 0 2 8.017v8.085c0 .353.286.639.638.639h1.755c.585 0 1.134-.285 1.473-.762a.215.215 0 0 1 .17-.09h.792c.048 0 .094.017.132.046l2.378 1.872.019.016c.6.6 1.558.645 2.212.105l2.602-2.135a.216.216 0 0 1 .094-.044l3.315-.663a.214.214 0 0 1 .25.172 1.8 1.8 0 0 0 1.775 1.484h1.757a.638.638 0 0 0 .638-.639V8.018a.638.638 0 0 0-.638-.639zm-6.993 6.054l-.964.806-.02.014a.8.8 0 0 0-.104.085l-.008.007-2.585 2.163a.187.187 0 0 1-.235 0l-2.724-2.146a.851.851 0 0 0-.526-.181h-.788a.212.212 0 0 1-.212-.213V9.98c0-.085.05-.162.129-.195L9.207 8.56h.005a.191.191 0 0 1 .255.227 2.266 2.266 0 0 0 1.29 2.643c.281.122.585.184.892.184.29 0 .576-.055.845-.161l.135-.055a.213.213 0 0 1 .238.054l1.522 1.677a.212.212 0 0 1-.02.307v-.004zm3.428-.3a.213.213 0 0 1-.17.208l-1.116.223a.213.213 0 0 1-.254-.216 1.728 1.728 0 0 0-.376-1.112l-.011-.014-2.244-2.468a.911.911 0 0 0-.953-.216l-.815.335a.553.553 0 0 1-.463-1.003l2.175-1.06c.263-.126.566-.145.843-.053l3.268 1.25a.17.17 0 0 1 .11.163l.006 3.962z" /> </OrbitIcon> ); }