@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 • 805 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggageRecheck(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 12c-3.309 0-6-2.691-6-6s2.691-6 6-6 6 2.691 6 6-2.691 6-6 6zm0-10C9.794 2 8 3.794 8 6s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4zm2.745 2.43l-2.667 2.982-1.49-1.334 2.667-2.98 1.49 1.333zM18 16a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h3v-1c0-1.104.897-2 2-2h2c1.103 0 2 .896 2 2v1h3zm-1 6v-4h-2v4h2zm-8 0v-4H7v4h2zm2-7v1h2v-1h-2z"
}));
}