UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

41 lines 1.43 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedDocumentFolder = IconWrapper('byted-document-folder', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M32 6H22V42H32V6Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M42 6H32V42H42V6Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M10 6L18 7L14.5 42L6 41L10 6Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M37 18V15", "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M27 18V15", "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null)]); }); export default BytedDocumentFolder;