@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.31 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggageCheckedNone(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: "M5.333 17.5L7 15.833V7.417c0-.25.167-.417.417-.417h.25c.166 0 .333-.167.416-.417v-1.25c0-1.416 1.084-2.5 2.5-2.5H13.5c1.417 0 2.5 1.084 2.5 2.5v1.25c0 .077.016.147.045.205l4.538-4.538a.806.806 0 0 1 1.167 0 .806.806 0 0 1 0 1.167L3.417 21.75c-.25.333-.834.333-1.167 0a.806.806 0 0 1 0-1.167l.447-.446A2.84 2.84 0 0 1 2 18.25V9.917C2 8.333 3.333 7 4.917 7c.25 0 .416.167.416.417V17.5zM9.667 5.333v1.25c0 .25.25.417.5.417h3.666c.25 0 .417-.167.417-.417v-1.25c0-.5-.333-.833-.833-.833H10.5c-.5 0-.833.333-.833.833zM7 19.833l10-10V20.75c0 .25-.167.417-.417.417H7.417C7.167 21.167 7 21 7 20.75v-.917zm12.75-12.75C21 7.417 22 8.5 22 9.917v8.333c0 1.583-1.333 2.917-2.917 2.917-.25 0-.416-.167-.416-.417V8.167l1.083-1.084z"
}));
}