@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
37 lines • 1.15 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedCameraFive = IconWrapper('byted-camera-five', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("circle", {
"cx": "24",
"cy": "21",
"r": "16",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("circle", {
"cx": "24",
"cy": "21",
"r": "7",
"fill": props.colors[3],
"stroke": props.colors[2],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M16 43L32 43",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M24 37V43",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});
export default BytedCameraFive;