@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
35 lines • 1.43 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedHourglassNull = IconWrapper('byted-hourglass-null', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48"
}, [_createVNode("g", {
"stroke": "none",
"stroke-width": props.strokeWidth,
"fill": "none",
"fill-rule": "evenodd",
"stroke-linejoin": props.strokeLinejoin
}, [_createVNode("g", {
"transform": "translate(7.000000, 3.500000)",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth
}, [_createVNode("path", {
"d": "M0,0.5 L34,0.5",
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M0,40.5 L34,40.5",
"stroke-linecap": props.strokeLinecap
}, null), _createVNode("path", {
"d": "M30,20.4999965 C27.3333333,33.8388874 23,40.5055541 17,40.4999965 C11,40.494439 6.66666667,33.8277723 4,20.4999965 L30,20.4999965 Z",
"fill": props.colors[1],
"fill-rule": "nonzero",
"transform": "translate(17.000000, 30.499998) rotate(180.000000) translate(-17.000000, -30.499998) "
}, null), _createVNode("path", {
"d": "M30,0.5 C27.3333333,13.8388909 23,20.5055575 17,20.5 C11,20.4944425 6.66666667,13.8277758 4,0.5 L30,0.5 Z",
"fill": props.colors[1],
"fill-rule": "nonzero"
}, null)])])]);
});
export default BytedHourglassNull;