@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
33 lines • 1.33 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedShuffleOne = IconWrapper('byted-shuffle-one', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M40 33L44 37L40 41",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M40 7L44 11L40 15",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"d": "M44 11.0001H37C29.8203 11.0001 24 16.8204 24 24.0001V24.0001C24 31.1798 29.8203 37.0001 37 37.0001H44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M4 37.0001H11C18.1797 37.0001 24 31.1798 24 24.0001V24.0001C24 16.8204 18.1797 11.0001 11 11.0001L4 11.0001",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap
}, null)]);
});
export default BytedShuffleOne;