@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.05 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Messages(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.083 12.017a3.326 3.326 0 0 0-3.261 2.745.207.207 0 0 1-.205.171h-.834a.206.206 0 0 0-.156.072l-2.73 3.12a.417.417 0 0 1-.73-.275v-2.917H5.75A3.75 3.75 0 0 1 2 11.183V7.85A3.754 3.754 0 0 1 5.75 4.1h8.333a3.754 3.754 0 0 1 3.75 3.75v3.958a.208.208 0 0 1-.208.209h-3.542zM22 15.35v2.5a2.083 2.083 0 0 1-2.083 2.083h-1.25v2.084a.417.417 0 0 1-.712.295l-2.377-2.379h-1.495A2.083 2.083 0 0 1 12 17.85v-2.5c0-1.15.933-2.083 2.083-2.083h5.834A2.083 2.083 0 0 1 22 15.35z"
}));
}