@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"
40 lines (31 loc) • 1.45 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = BoardingGate;
var _react = require("react");
var React = _interopRequireWildcard(_react);
var _Icon = require("../Icon");
var _Icon2 = _interopRequireDefault(_Icon);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
/* eslint-disable */
function BoardingGate(props) {
var color = props.color,
size = props.size,
customColor = props.customColor,
className = props.className,
dataTest = props.dataTest;
return React.createElement(
_Icon2.default,
{
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
},
React.createElement("path", { d: "M19 7h1a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1V5H2V3h20v2h-3v2zm-2 0V5H7v2h10zm-2 6.414V17h2v-3.586l1.293 1.293 1.414-1.414L16 9.586l-3.707 3.707 1.414 1.414L15 13.414zm-4.75-1.664V10h-3.5C5.785 10 5 10.786 5 11.75v3.5c0 .965.785 1.75 1.75 1.75H8.5c.965 0 1.75-.785 1.75-1.75v-2.625H7.625v1.75H8.5v.875H6.75v-3.5h3.5z" })
);
}