@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.6 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BaggageStorage(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: "M12.4 12c1.36 0 2.48 1.04 2.48 2.4l-.003 7.44c0 .08-.08.16-.16.16h-5.36c-.08 0-.16-.08-.16-.16L9.2 14.4c0-1.36 1.04-2.4 2.4-2.4h.8zm.72 2.8c.08 0 .16-.08.16-.16v-.16c0-.48-.32-.8-.8-.8h-.8c-.48 0-.8.32-.8.8v.16c0 .08.08.16.16.16h2.08zM6.8 16c0-.64.56-1.2 1.2-1.2h.16c.08 0 .16.08.16.16v6.88c0 .08-.08.16-.16.16H8c-.64 0-1.2-.56-1.2-1.2V16zm10.4 4.8c0 .64-.56 1.2-1.2 1.2h-.16c-.08 0-.16-.08-.16-.16v-6.88c0-.08.08-.16.16-.16H16c.64 0 1.2.56 1.2 1.2v4.8zM10.971 6.543c-.285.686-.8 1.2-1.428 1.486-1.372.514-2.857-.114-3.372-1.486s.172-2.857 1.486-3.37 2.8.17 3.372 1.428c0 .057.057.114.114.114h6c.514 0 .857.457.857.914s-.4.857-.857.857h-.172a.123.123 0 0 0-.114.115v.114c0 .457-.4.857-.857.857-.457 0-.857-.343-.857-.914v-.115a.123.123 0 0 0-.114-.114h-.572c-.114 0-.171.114-.171.172v.114c0 .514-.4.857-.857.857a.842.842 0 0 1-.858-.857V6.6c0-.058-.057-.172-.171-.172h-1.314a.123.123 0 0 0-.115.114zM7.43 5.63c0 .629.514 1.143 1.142 1.143s1.143-.514 1.143-1.143c0-.628-.514-1.143-1.143-1.143S7.43 5.001 7.43 5.63z"
}));
}