naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
12 lines (11 loc) • 590 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.MaximizeIcon = void 0;
const vue_1 = require("vue");
exports.MaximizeIcon = (0, vue_1.defineComponent)({
render() {
return ((0, vue_1.h)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
(0, vue_1.h)("g", { fill: "none" },
(0, vue_1.h)("path", { d: "M8.5 2a.5.5 0 0 0 0 1h3.793L3 12.293V8.5a.5.5 0 0 0-1 0v4.9a.6.6 0 0 0 .6.6h4.9a.5.5 0 0 0 0-1H3.707L13 3.707V7.5a.5.5 0 0 0 1 0V2.6a.6.6 0 0 0-.6-.6H8.5z", fill: "currentColor" }))));
}
});
;