@icon-park/vue-next
Version:
Vue3 Icons for IconPark
41 lines • 1.14 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('washing-machine', true, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 49 48",
"fill": "none"
}, [_createVNode("rect", {
"x": "8.77783",
"y": "4",
"width": "32",
"height": "40",
"rx": "2",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M8.77783 15.5H40.7778",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("circle", {
"cx": "28.7778",
"cy": "10",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "34.7778",
"cy": "10",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "24.7778",
"cy": "30",
"r": "7",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null)]);
});