@icon-park/vue-next
Version:
Vue3 Icons for IconPark
41 lines • 1.22 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('iwatch-two', true, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M15.4167 10.5C18.2373 7.69936 21.9423 6 26 6C34.8366 6 42 14.0589 42 24C42 33.9411 34.8366 42 26 42C21.9423 42 18.2373 40.3006 15.4167 37.5",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("rect", {
"x": "6",
"y": "10",
"width": "10",
"height": "28",
"rx": "2",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "13",
"y": "18",
"width": "4",
"height": "4",
"rx": "2",
"transform": "rotate(90 13 18)",
"fill": props.colors[2]
}, null), _createVNode("rect", {
"x": "13",
"y": "25",
"width": "4",
"height": "4",
"rx": "2",
"transform": "rotate(90 13 25)",
"fill": props.colors[2]
}, null)]);
});