@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
62 lines (61 loc) • 3.33 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var React = _interopRequireWildcard(require("react"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _defaultIconPropValues = require("../_defaultIconPropValues.ts");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
const Schneepflug = props => {
const {
width = _defaultIconPropValues.Icon48PropValues.width,
height = _defaultIconPropValues.Icon48PropValues.height,
stroke = _defaultIconPropValues.Icon48PropValues.stroke,
...restProps
} = props;
delete restProps.fill;
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
width: width,
height: height,
fill: "none"
}, restProps), /*#__PURE__*/React.createElement("path", {
stroke: stroke,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2.4,
d: "M32.04 22H15.96c-1.18 0-2.09-1.06-1.94-2.25l.95-7.02c.13-.99.96-1.73 1.94-1.73H31.1c.98 0 1.8.74 1.94 1.73l.95 7.02c.15 1.2-.76 2.25-1.94 2.25z"
}), /*#__PURE__*/React.createElement("path", {
stroke: stroke,
strokeMiterlimit: 10,
strokeWidth: 2.4,
d: "m15 30-6-.04V26l5.01.04c.38 0 .72.21.89.54l.99 1.98c.25.49.05 1.08-.44 1.33-.14.07-.3.11-.45.11Z"
}), /*#__PURE__*/React.createElement("path", {
stroke: stroke,
strokeLinejoin: "round",
strokeWidth: 2.4,
d: "M39 33V23L37.22 8.75c-.13-1-.98-1.75-1.98-1.75H12.77c-1.01 0-1.86.75-1.98 1.75L9.01 23v10"
}), /*#__PURE__*/React.createElement("path", {
stroke: stroke,
strokeMiterlimit: 10,
strokeWidth: 2.4,
d: "M33 3h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1ZM33.01 30l5.99-.04V26h-4.99c-.38 0-.73.21-.9.55l-1 2a.998.998 0 0 0 .9 1.45Z"
}), /*#__PURE__*/React.createElement("path", {
stroke: stroke,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2.4,
d: "M3 33h42c-3.16 7.41 0 12 0 12H3s3.13-5.13 0-12"
}));
};
Schneepflug.propTypes = {
width: _propTypes.default.string,
height: _propTypes.default.string,
stroke: _propTypes.default.string
};
var _default = exports.default = Schneepflug;