@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.
18 lines • 1.13 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ThumbDown(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M2 12.802a2.083 2.083 0 0 1 1.06-1.81 1.875 1.875 0 0 1 .8-2.565 1.876 1.876 0 0 1 .833-2.5 1.873 1.873 0 0 1-.193-.834c0-.545.243-1.458 1.875-1.459h5.417a14.467 14.467 0 0 1 3.423.393c.255.054.525.11.822.166a.417.417 0 0 1 .338.41v8.43a.417.417 0 0 1-.18.343c-1.588 1.096-3.362 3.596-3.362 5.884a1.666 1.666 0 0 1-1.386 1.708c-.812.113-1.85-.387-2.34-2.137a7.237 7.237 0 0 1 .433-3.673.208.208 0 0 0-.198-.273H4.083A2.083 2.083 0 0 1 2 12.802zm15.625.208V3.843a.833.833 0 0 1 .833-.833h2.709a.833.833 0 0 1 .833.833v9.167a.833.833 0 0 1-.833.833h-2.709a.833.833 0 0 1-.833-.833zm1.25-7.708a.625.625 0 1 0 1.25 0 .625.625 0 0 0-1.25 0z"
}));
}