@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.61 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Relax(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: "M12.42 12a.417.417 0 0 1 .417.416v8.73a.833.833 0 1 1-1.667 0v-8.73a.417.417 0 0 1 .417-.417h.833zm-2.917 6.666v2.5a.833.833 0 0 1-1.667 0v-2.29a.208.208 0 0 0-.208-.209H5.544a.208.208 0 0 0-.208.209v2.29a.833.833 0 1 1-1.667 0v-3.15a.823.823 0 0 0-.018-.183l-.798-3.573A.833.833 0 1 1 4.48 13.9l.653 2.934a.207.207 0 0 0 .203.167h2.5c.92 0 1.667.746 1.667 1.666zm5 0c0-.92.747-1.666 1.667-1.666h2.5a.207.207 0 0 0 .204-.167l.652-2.934a.833.833 0 0 1 1.627.361l-.798 3.573a.823.823 0 0 0-.018.183v3.15a.833.833 0 0 1-1.667 0v-2.29a.208.208 0 0 0-.208-.209h-2.084a.208.208 0 0 0-.208.209v2.29a.833.833 0 1 1-1.667 0v-2.5zm-7.39-8.618a2.392 2.392 0 0 1-2.18 1.275 1.982 1.982 0 0 1-2.059-1.379 1.531 1.531 0 0 1 .454-1.445l8.108-6.294a.97.97 0 0 1 1.193 0l7.99 6.252a1.536 1.536 0 0 1 .5 1.574 1.931 1.931 0 0 1-1.982 1.289 2.392 2.392 0 0 1-2.18-1.272.21.21 0 0 0-.373 0 2.391 2.391 0 0 1-2.18 1.272 2.391 2.391 0 0 1-2.182-1.272.21.21 0 0 0-.371 0A2.392 2.392 0 0 1 9.67 11.32a2.391 2.391 0 0 1-2.185-1.272.21.21 0 0 0-.371 0z"
}));
}