react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
20 lines (19 loc) • 906 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.withModIconGlyphMinusThick = void 0;
var _react = _interopRequireDefault(require("react"));
var _IconConstructor = require("../Icon.utils/IconConstructor");
require("./Icon_hasGlyph.css");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var IconElement = function IconElement(props) {
return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
d: "M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"
}));
};
IconElement.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 448 512"
};
var withModIconGlyphMinusThick = exports.withModIconGlyphMinusThick = (0, _IconConstructor.IconConstructor)('minus-thick', IconElement);