@icon-park/vue-next
Version:
Vue3 Icons for IconPark
65 lines • 1.76 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('computer-one', true, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M10 6C10 4.89543 10.8954 4 12 4H36C37.1046 4 38 4.89543 38 6V42C38 43.1046 37.1046 44 36 44H12C10.8954 44 10 43.1046 10 42L10 6Z",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M17 12L31 12",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("circle", {
"cx": "17",
"cy": "21",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "17",
"cy": "27",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "17",
"cy": "33",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "24",
"cy": "21",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "24",
"cy": "27",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "24",
"cy": "33",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "31",
"cy": "21",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "31",
"cy": "27",
"r": "2",
"fill": props.colors[0]
}, null), _createVNode("circle", {
"cx": "31",
"cy": "33",
"r": "2",
"fill": props.colors[0]
}, null)]);
});