UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

51 lines 1.36 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedStrongbox = IconWrapper('byted-strongbox', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("rect", { "x": "4", "y": "4", "width": "40", "height": "40", "rx": "3", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("circle", { "cx": "12", "cy": "12", "r": "2", "fill": props.colors[2] }, null), _createVNode("circle", { "cx": "12", "cy": "36", "r": "2", "fill": props.colors[2] }, null), _createVNode("circle", { "cx": "36", "cy": "12", "r": "2", "fill": props.colors[2] }, null), _createVNode("circle", { "cx": "36", "cy": "36", "r": "2", "fill": props.colors[2] }, null), _createVNode("circle", { "cx": "24", "cy": "24", "r": "9", "fill": props.colors[3], "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null)]); }); export default BytedStrongbox;