@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
41 lines (40 loc) • 3.19 kB
JavaScript
;
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 Hausmuell = props => {
const {
width = _defaultIconPropValues.Icon48PropValues.width,
height = _defaultIconPropValues.Icon48PropValues.height,
stroke = _defaultIconPropValues.Icon48PropValues.stroke,
fill = _defaultIconPropValues.Icon48PropValues.fill,
...restProps
} = props;
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", {
fill: fill,
stroke: stroke,
strokeWidth: 0.8,
d: "M45.477 36.273H2.523a1.022 1.022 0 1 0 0 2.045h42.954a1.022 1.022 0 1 0 0-2.045ZM21.51 33.195c6.56 0 11.671-2.845 15.029-8.176l2.8.004h.007c1.553 0 3.115-.672 4.286-1.844s1.843-2.736 1.845-4.292c.002-1.577-.602-3.022-1.7-4.07-.88-.84-2.028-1.35-3.28-1.516v-.162c0-1.906-1.577-3.457-3.513-3.457H6.035c-1.937 0-3.512 1.551-3.512 3.458v.415a1 1 0 0 0 .012.16c1.984 12.561 8.722 19.48 18.975 19.48Zm18.674-17.878c.842.102 1.606.432 2.18.98.69.657 1.069 1.577 1.068 2.588-.002 2.143-1.95 4.092-4.086 4.092h-.004l-1.669-.002c1.095-2.216 1.938-4.772 2.511-7.658ZM4.568 13.14c0-.766.672-1.413 1.467-1.413h5.678l6.264 4.058-3.708 2.225a1.023 1.023 0 0 0-.128 1.662l6.136 5.114a1.02 1.02 0 0 0 1.44-.131 1.02 1.02 0 0 0-.13-1.44l-5.03-4.192 3.879-2.328a1.023 1.023 0 0 0 .029-1.735l-4.99-3.233h21.509c.795 0 1.467.647 1.467 1.413v.334C36.118 28.08 27.954 31.149 21.51 31.149c-11.658 0-15.65-9.592-16.942-17.675z"
}));
};
Hausmuell.propTypes = {
width: _propTypes.default.string,
height: _propTypes.default.string,
fill: _propTypes.default.string,
stroke: _propTypes.default.string
};
var _default = exports.default = Hausmuell;