@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.23 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ThumbUp(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: "M22 11.192c0 .752-.405 1.445-1.06 1.815a1.875 1.875 0 0 1-.8 2.565 1.876 1.876 0 0 1-.832 2.5c.127.258.192.541.192.829 0 .542-.243 1.458-1.875 1.458h-5.417a14.467 14.467 0 0 1-3.423-.392c-.255-.054-.525-.11-.822-.167a.417.417 0 0 1-.338-.41v-8.43a.417.417 0 0 1 .18-.342c1.588-1.096 3.362-3.596 3.362-5.885a1.667 1.667 0 0 1 1.386-1.708c.812-.112 1.85.388 2.34 2.138a7.237 7.237 0 0 1-.433 3.672.208.208 0 0 0 .198.273h5.259A2.083 2.083 0 0 1 22 11.192zm-15.625-.209v9.167a.833.833 0 0 1-.833.833H2.833A.833.833 0 0 1 2 20.15v-9.167a.833.833 0 0 1 .833-.833h2.709a.833.833 0 0 1 .833.833zm-1.25 7.709a.625.625 0 1 0-1.25 0 .625.625 0 0 0 1.25 0z"
}));
}