@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
32 lines • 1.16 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedKnifeFork = IconWrapper('byted-knife-fork', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M14 4V44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M8 5V15C8 20 14 20 14 20C14 20 20 20 20 15V5",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M30 12C30 4 38 4 38 4V21H30V12Z",
"fill": props.colors[1]
}, null), _createVNode("path", {
"d": "M38 21H30V12C30 4 38 4 38 4V21ZM38 21V44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});
export default BytedKnifeFork;