@icon-park/vue-next
Version:
Vue3 Icons for IconPark
39 lines • 1.27 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('glasses-three', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("circle", {
"cx": "12",
"cy": "33",
"r": "7",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M29 33C29 29.6863 27.5 27 24 27C20.5 27 19 29.6863 19 33",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("circle", {
"cx": "36",
"cy": "33",
"r": "7",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, null), _createVNode("path", {
"d": "M14 8H12C8.68629 8 6 10.6863 6 14V22",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M34 8H36C39.3137 8 42 10.6863 42 14V22",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null)]);
});