@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 • 1.11 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Suitcase(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: "M19.917 6.993h-3.5c-.25 0-.417-.166-.417-.416v-.834a2.063 2.063 0 0 0-2.083-2.083h-3.75C9 3.66 8 4.577 8 5.743v.834c0 .25-.167.416-.333.416H4.083A2.063 2.063 0 0 0 2 9.077v9.166c0 1.167.917 2.084 2.083 2.084h15.834A2.063 2.063 0 0 0 22 18.243V9.077a2.063 2.063 0 0 0-2.083-2.084zm-5.584-.416c0 .25-.166.416-.416.416h-3.75c-.25 0-.5-.166-.5-.416v-.834c.083-.25.25-.416.5-.416h3.75c.25 0 .416.166.416.416v.834zm3.5 6.25c-.916 0-1.666-.75-1.666-1.667s.75-1.667 1.666-1.667c.917 0 1.667.75 1.667 1.667s-.75 1.667-1.667 1.667z"
}));
}