@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.01 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function GenderWoman(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.3 0-4.3.813-5 2.813C3.2 4.612.613 14.101 2.812 22l4.938-1.906C8.871 21.214 10.277 22 12 22c1.723 0 3.129-.785 4.25-1.906L21.5 22c1.7-7.898-.898-20-9.5-20zm-1.594 6.406S13.301 11.602 16 12c.36 1.387.379 3.117.313 4.625C15.252 18.566 13.828 20 12 20c-1.879 0-3.34-1.504-4.406-3.531-.074-.145-.149-.29-.219-.438-.086-1.234-.086-2.625.125-4.031 1.602-1 2.906-3.594 2.906-3.594zM9.5 13c-.75-.012-1.5.148-1.5.5 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5c0-.3-.75-.488-1.5-.5zm5 0c-.75-.012-1.5.148-1.5.5 0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5c0-.3-.75-.488-1.5-.5z"
}));
}