@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.
35 lines • 1.45 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Outlook(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.417 6.253v3.924l1.37.864c.037.01.115.01.152 0l5.901-3.98c0-.47-.439-.808-.687-.808h-6.736z",
fill: "#0072C6"
}), React.createElement("path", {
d: "M14.417 11.641l1.251.86c.176.13.389 0 .389 0-.212.13 5.784-3.853 5.784-3.853v7.212c0 .785-.502 1.114-1.068 1.114h-6.357V11.64zm-6.48-1.809c-.426 0-.766.2-1.017.6-.251.4-.377.93-.377 1.59 0 .669.126 1.198.377 1.586.25.39.58.583.987.583.42 0 .753-.189.998-.567.246-.378.37-.903.37-1.575 0-.7-.12-1.244-.359-1.634-.238-.389-.565-.583-.979-.583z",
fill: "#0072C6"
}), React.createElement("path", {
d: "M2 4.26v15.352l11.678 2.448V2L2 4.26zm7.815 10.271c-.494.65-1.137.975-1.931.975-.774 0-1.404-.315-1.891-.944-.487-.63-.731-1.45-.731-2.46 0-1.068.247-1.932.742-2.591.495-.66 1.15-.99 1.966-.99.771 0 1.395.316 1.87.947.476.631.714 1.463.714 2.496.001 1.062-.246 1.918-.74 2.567z",
fill: "#0072C6"
}));
}