UNPKG

@fe6/icon-vue

Version:

Water Icon 的 VUE3 图标

32 lines 1.17 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export var BytedNineKey = IconWrapper('byted-nine-key', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("rect", { "x": "6", "y": "6", "width": "36", "height": "36", "rx": "3", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M24.5 14C21.4624 14 19 16.4624 19 19.5C19 22.5376 21.4624 25 24.5 25C27.5376 25 30 22.5376 30 19.5C30 16.4624 27.5376 14 24.5 14Z", "stroke": props.colors[2], "stroke-width": props.strokeWidth }, null), _createVNode("path", { "d": "M19 29C19.8184 31.1932 21.5476 33 24.5 33C27.5376 33 30 30.3137 30 27V20", "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linecap": props.strokeLinecap, "stroke-linejoin": props.strokeLinejoin }, null)]); }); export default BytedNineKey;