@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.
22 lines • 1.04 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function GenderMan(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M12 2c-2.2 0-4.313.805-5.813 2.406A8.188 8.188 0 0 0 4 10v.406c-1 .801-1 2.102-1 2.5 0 1.301.988 2.383 2.188 2.781 1 3.899 4.21 6.22 6.812 6.22 2.602 0 5.813-2.321 6.813-6.22C20.012 15.387 21 14.302 21 13c0-.5 0-1.7-1-2.5v-.406A8.19 8.19 0 0 0 17.812 4.5C16.313 2.8 14.2 2 12 2zM9 7c3.5 4.5 6.602-1.105 9 4.594 0 0 1.2.304 1 1.406-.2 1.398-1.813 1.094-1.813 1.094l-.187.719C16.3 18.21 13.602 20 12 20c-1.602 0-4.3-1.79-5-5.188l-.094-.718S5.094 14.199 5.094 13c0-1.3 1-1.406 1-1.406L7 12c0-2.102.8-4.5 2-5zm.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm5 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"
}));
}