@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.33 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function MessagesOutline(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: "M9.917 14.1a.833.833 0 1 1 0 1.667h-.04l-2.666 3.049a.833.833 0 0 1-1.461-.55v-2.52A4.173 4.173 0 0 1 2 11.6V8.267A4.172 4.172 0 0 1 6.167 4.1h7.916a4.172 4.172 0 0 1 4.167 4.167v2.916a.833.833 0 1 1-1.667 0V8.267a2.5 2.5 0 0 0-2.5-2.5H6.167a2.5 2.5 0 0 0-2.5 2.5V11.6a2.5 2.5 0 0 0 2.5 2.5h.416a.833.833 0 0 1 .834.833v1.119l1.455-1.667A.833.833 0 0 1 9.5 14.1h.417zm9.583-.833a2.5 2.5 0 0 1 2.5 2.5v1.7a2.5 2.5 0 0 1-2.5 2.5h-.417v1.666a.833.833 0 0 1-1.422.59l-2.256-2.256h-1.322a2.5 2.5 0 0 1-2.5-2.5v-1.7a2.5 2.5 0 0 1 2.5-2.5H19.5zm.833 4.2v-1.7a.833.833 0 0 0-.833-.834h-5.417a.833.833 0 0 0-.833.834v1.7c0 .46.373.833.833.833h1.667c.221 0 .433.088.59.244l1.077 1.078v-.489a.833.833 0 0 1 .833-.833h1.25a.833.833 0 0 0 .833-.833z"
}));
}