@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"
20 lines (18 loc) • 865 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggageStorage(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: "M18 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-2zm-.142-9.999L21 5v2h-1.999L19 10h-2l.001-3h-2L15 9.002h-2l.001-2.001h-2.143C10.41 8.721 8.858 10 7 10c-2.206 0-4-1.794-4-4s1.794-4 4-4c1.858 0 3.411 1.281 3.858 3.001zM7 8c1.103 0 2-.898 2-2 0-1.103-.897-2-2-2s-2 .897-2 2c0 1.102.897 2 2 2z" })
);
}