13 lines
646 B
JavaScript
13 lines
646 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const vue_1 = require("vue");
|
|
exports.default = (0, vue_1.defineComponent)({
|
|
name: 'File',
|
|
render() {
|
|
return ((0, vue_1.h)("svg", { viewBox: "0 0 24 24", version: "1.1", xmlns: "http://www.w3.org/2000/svg" },
|
|
(0, vue_1.h)("g", { fill: "none", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" },
|
|
(0, vue_1.h)("path", { d: "M14 3v4a1 1 0 0 0 1 1h4" }),
|
|
(0, vue_1.h)("path", { d: "M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2z" }))));
|
|
}
|
|
});
|