@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 • 829 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function AlertCircle(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: "M12 2h.2c5.4 0 9.8 4.4 9.8 9.8 0 5.6-4.4 10.1-10 10.2h-.2C6.4 22 2 17.6 2 12.2 2 9.5 3 6.9 4.9 5 6.8 3.1 9.3 2 12 2zm-.8 5.58v5c0 .5.3.8.8.8.4 0 .8-.3.8-.8v-5c0-.4-.3-.8-.8-.8-.4 0-.8.3-.8.8zm.8 9.65a1.3 1.3 0 1 0 0-2.6 1.3 1.3 0 0 0 0 2.6z"
}));
}