@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 838 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./BaggageRecheck.js.flow";
export default function BaggageRecheck(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}