@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 • 925 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Close(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: "M17.655 6.333a.9.9 0 0 1 .001 1.273l-4.103 4.108a.4.4 0 0 0 0 .566l4.103 4.109a.9.9 0 0 1 .08 1.18l-.08.092a.9.9 0 0 1-1.273 0l-4.1-4.108a.4.4 0 0 0-.567 0l-4.1 4.107a.9.9 0 1 1-1.273-1.272l4.103-4.108a.4.4 0 0 0 0-.566L6.343 7.606a.9.9 0 0 1-.08-1.18l.081-.093a.9.9 0 0 1 1.273.001l4.099 4.106a.4.4 0 0 0 .566 0l4.1-4.106a.9.9 0 0 1 1.273 0z"
}));
}