@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) • 1.04 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./BaggageSet.js.flow";
export default function BaggageSet(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="M16 8h-3.003A1.996 1.996 0 0 0 11 9.992V11H1V6.822c0-.938.75-1.69 1.688-1.69h2.53V2.69c0-.938.752-1.69 1.688-1.69h3.188c.936 0 1.687.752 1.687 1.69v2.441h2.531c.937 0 1.688.753 1.688 1.69V8zM7 21H6v.99a1 1 0 1 1-2 0V21H2.687A1.683 1.683 0 0 1 1 19.31V13h6.766A2.997 2.997 0 0 0 7 15.006V21zM7 3v2h3V3H7zm12.25 9.733h1.875c1.04 0 1.875.831 1.875 1.867v6.533A1.864 1.864 0 0 1 21.125 23H9.875C8.835 23 8 22.17 8 21.133l.01-6.533c0-1.036.824-1.867 1.865-1.867h1.875v-1.866C11.75 9.83 12.584 9 13.625 9h3.75c1.04 0 1.875.83 1.875 1.867v1.866zM13 13h5v-2h-5v2z" />
</OrbitIcon>
);
}