@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.24 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggageChecked(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.083 6.997C20.667 6.997 22 8.33 22 9.913v8.334c0 1.583-1.333 2.916-2.917 2.916-.25 0-.416-.166-.416-.416V7.413c0-.25.166-.416.416-.416zm-13.75.416v13.334c0 .25-.166.416-.416.416C3.333 21.163 2 19.83 2 18.247V9.913C2 8.33 3.333 6.997 4.917 6.997c.25 0 .416.166.416.416zM9.667 5.33v1.25c0 .25.25.417.5.417h3.75c.25 0 .416-.167.416-.417V5.33c0-.5-.333-.833-.833-.833h-2.917c-.5 0-.916.333-.916.833zM7 20.747V7.413c0-.25.167-.416.417-.416h.166c.25 0 .417-.167.417-.417V5.33c0-1.417 1.083-2.5 2.5-2.5h2.917c1.416 0 2.5 1.083 2.5 2.5v1.25c.083.25.25.417.416.417h.167c.333 0 .5.166.5.416v13.334c0 .25-.167.416-.417.416H7.417c-.25 0-.417-.166-.417-.416z"
}));
}