@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.62 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ContactEmail(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: "M20.75 5.33H3.25C2.583 5.33 2 5.913 2 6.58v10.833c0 .667.583 1.25 1.25 1.25h17.5c.667 0 1.25-.583 1.25-1.25V6.58c0-.667-.583-1.25-1.25-1.25zm-7.417 11.667H4a.358.358 0 0 1-.333-.334c0-.75.166-1.416.416-2.083.334-.583 1.25-1 2.5-1.417.084 0 .167-.083.25-.083l.334-.167c.083-.083.083-.083.083-.166.083-.25 0-.5-.083-.75-.667-.667-.917-1.584-.834-2.5.084-1.5 1.084-2.5 2.334-2.5s2.25 1 2.25 2.416c.083.667-.084 1.417-.417 2v.084c-.083.083-.083.166-.167.25l-.25.25c0 .083-.083.166-.083.333v.5c0 .083 0 .167.083.167l.334.166c.083 0 .166.084.25.084.5.166 1 .333 1.416.583 0 0 .084 0 .084.083.083 0 .083.084.166.084.084 0 .167.083.167.083s.083 0 .083.083c.084 0 .084.084.167.167 0 0 .083 0 .083.083.084 0 .084.084.084.084.083.083.166.166.25.333.25.667.416 1.333.416 2.083.084-.083-.083.084-.25.084zm7-5.75c0 .416-.333.75-.833.75h-5c-.5 0-.833-.334-.833-.75V8.913c0-.083.166-.083.166 0l2.5 1.584c.417.25.917.25 1.334 0l2.5-1.584h.166v2.334zm0-3.417l-3.083 2c-.167.083-.333.083-.417 0l-3.166-2c0-.5.333-.833.833-.833h5c.5 0 .833.333.833.833z"
}));
}