@fe6/icon-cube-vue
Version:
Water Icon 的支持自定义图标
22 lines • 1.13 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('byted-two-ellipses', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M40.579 7.34871C44.3436 11.1133 39.9566 21.6041 30.7803 30.7804C21.604 39.9567 11.1133 44.3437 7.34863 40.5791C3.58399 36.8144 7.97101 26.3237 17.1473 17.1474C26.3236 7.97109 36.8143 3.58407 40.579 7.34871Z",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M7.48532 7.34871C3.72068 11.1133 8.1077 21.6041 17.284 30.7804C26.4603 39.9567 36.951 44.3437 40.7157 40.5791C44.4803 36.8144 40.0933 26.3237 30.917 17.1474C21.7407 7.97109 11.25 3.58407 7.48532 7.34871Z",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});