UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

48 lines 1.41 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedIdCard = IconWrapper('byted-id-card', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48" }, [_createVNode("g", { "stroke": "none", "stroke-width": props.strokeWidth, "fill": "none", "fill-rule": "evenodd", "stroke-linejoin": props.strokeLinejoin }, [_createVNode("g", { "transform": "translate(4.000000, 8.000000)", "stroke-width": props.strokeWidth }, [_createVNode("rect", { "stroke": props.colors[0], "fill": props.colors[1], "fill-rule": "nonzero", "x": "0", "y": "0", "width": "40", "height": "32", "rx": "2" }, null), _createVNode("rect", { "stroke": props.colors[2], "fill": props.colors[3], "fill-rule": "nonzero", "x": "24", "y": "8", "width": "8", "height": "8" }, null), _createVNode("path", { "d": "M8,24 L32,24", "stroke": props.colors[2], "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M8,8 L14,8", "stroke": props.colors[2], "stroke-linecap": props.strokeLinecap }, null), _createVNode("path", { "d": "M8,16 L14,16", "stroke": props.colors[2], "stroke-linecap": props.strokeLinecap }, null)])])]); }); export default BytedIdCard;