@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 • 2.07 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function GenderMan(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: "M4.438 6.358c-.39 1.698-.515 3.003-.376 3.913a.2.2 0 0 1-.117.102 2.921 2.921 0 0 0-1.918 2.351 3.925 3.925 0 0 0-.027.259v.493c.091 1.217.872 2.117 2.258 2.491.069.019.144.051.158.12.405 2.236 2.019 4.22 4.579 5.362 3.986 1.774 8.669-.275 10.329-4.318.027-.066.302-1.111.371-1.12 1.05-.144 1.724-.847 2.107-1.833.131-.338.195-.684.198-1.026v-.055a2.918 2.918 0 0 0-1.862-2.692.45.45 0 0 1-.182-.197c.225-.865.436-2.207.127-3.483-.182-1.44-1.225-2.872-2.791-2.765a2.865 2.865 0 0 0-.881.212C15.725 2.646 13.768 1.9 11.623 1.9c-3.063 0-6.508 1.52-7.185 4.458zm6.183 3.09a9.917 9.917 0 0 0 1.531-.255 5.413 5.413 0 0 0 1.953-.799 5.808 5.808 0 0 0 1.61-1.449c1.583.275 1.671 3.128 2.187 4.47.188.493.669.514 1.021.45a.754.754 0 0 0 .143.014 1.249 1.249 0 1 1 .017 2.5c-.345-.01-.586.095-.72.318-.153.251-.276.872-.388 1.27-1.127 4.016-6.517 6.065-10.217 2.744-1.503-1.434-1.824-2.86-1.824-3.687-.074-.393-.305-.652-.705-.652h-.313a1.25 1.25 0 1 1 .023-2.498c.029-.001.057-.004.086-.007.146.028.358.014.681-.093.668-.225.636-1.868.785-2.504.037-.153.078-.296.123-.427.733.439 1.708.657 2.924.657.342 0 .703-.018 1.083-.052zm3.463 3.009a1.04 1.04 0 1 0 2.08 0 1.04 1.04 0 0 0-2.08 0zm-6.251 0c0 .575.466 1.04 1.042 1.04a1.04 1.04 0 1 0 0-2.082c-.576 0-1.042.466-1.042 1.042zm5.855 3.463c-.474.153-1.036.228-1.688.228-.652 0-1.215-.075-1.687-.228a.807.807 0 0 0-.995.459.608.608 0 0 0-.02.055.82.82 0 0 0 .517 1.037 6.803 6.803 0 0 0 2.156.359h.057c.723 0 1.442-.121 2.156-.359a.82.82 0 0 0 .519-1.037c-.006-.019-.014-.036-.021-.055a.808.808 0 0 0-.746-.499.799.799 0 0 0-.248.04z"
}));
}