@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.63 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Nonstop;
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 Nonstop(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: "M2.571 7.571a2.575 2.575 0 0 1 2.572 2.571c0 1.267-1.267 3.028-2.335 4.286h2.335v1.714H.857a.857.857 0 0 1-.606-1.463c1.528-1.529 3.177-3.699 3.177-4.537a.858.858 0 0 0-1.714 0V11H0v-.858a2.574 2.574 0 0 1 2.571-2.57zm7.714.858v4.286h.858v1.714h-.858v1.715H8.571v-1.715h-2.57a.856.856 0 0 1-.714-1.332l3.428-5.143a.856.856 0 0 1 1.57.475zm-1.714 4.286V11.26l-.97 1.454h.97zm15.281-4.766a.857.857 0 0 1 .087.8l-2.96 7.394h-1.845l2.742-6.857h-3.02V7.573h4.286c.285 0 .55.14.71.376zM11.995 17L16.11 6.715h1.847L13.841 17h-1.846z" })
);
}