UNPKG

@fe6/icon-cube-vue

Version:

Water Icon 的支持自定义图标

32 lines 1.09 kB
import { createVNode as _createVNode } from "vue"; import { IconWrapper } from '../runtime'; export default IconWrapper('byted-camera', false, function (props) { return _createVNode("svg", { "width": props.size, "height": props.size, "viewBox": "0 0 48 48", "fill": "none" }, [_createVNode("path", { "d": "M15 12L18 6H30L33 12H15Z", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("rect", { "x": "4", "y": "12", "width": "40", "height": "30", "rx": "3", "fill": props.colors[1], "stroke": props.colors[0], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null), _createVNode("path", { "d": "M24 35C28.4183 35 32 31.4183 32 27C32 22.5817 28.4183 19 24 19C19.5817 19 16 22.5817 16 27C16 31.4183 19.5817 35 24 35Z", "fill": props.colors[3], "stroke": props.colors[2], "stroke-width": props.strokeWidth, "stroke-linejoin": props.strokeLinejoin }, null)]); });