@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 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function QuestionCircle(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: "M13.2 12.255c-.3.15-.45.375-.45.675 0 .45-.3.75-.75.75s-.75-.3-.75-.75c0-.9.526-1.725 1.35-2.1.75-.3 1.125-1.2.75-1.95-.3-.75-1.2-1.125-1.95-.75-.525.225-.9.75-.9 1.35 0 .45-.3.75-.75.75S9 9.93 9 9.48c0-1.65 1.35-3 3-3s3 1.35 3 3c0 1.2-.675 2.325-1.8 2.775zM12 17.53c-.693 0-1.3-.607-1.3-1.3s.608-1.3 1.3-1.3c.693 0 1.3.607 1.3 1.3s-.607 1.3-1.3 1.3zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2"
}));
}