@icon-park/vue-next
Version:
Vue3 Icons for IconPark
114 lines • 3.33 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('barbecue', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("rect", {
"x": "12",
"y": "4",
"width": "8",
"height": "8",
"rx": "4",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "12",
"y": "22",
"width": "8",
"height": "8",
"rx": "4",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("line", {
"x1": "16",
"y1": "31",
"x2": "16",
"y2": "44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("rect", {
"x": "28",
"y": "4",
"width": "8",
"height": "8",
"rx": "4",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "28",
"y": "22",
"width": "8",
"height": "8",
"rx": "4",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("line", {
"x1": "32",
"y1": "31",
"x2": "32",
"y2": "44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M13 17H19",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-miterlimit": "2",
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M29 17H35",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-miterlimit": "2",
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M13 36H19",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-miterlimit": "2",
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M29 36H35",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-miterlimit": "2",
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("line", {
"x1": "16",
"y1": "14",
"x2": "16",
"y2": "20",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("line", {
"x1": "32",
"y1": "14",
"x2": "32",
"y2": "20",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null)]);
});