@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
49 lines • 1.47 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedChartHistogramTwo = IconWrapper('byted-chart-histogram-two', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"fill-rule": "evenodd",
"clip-rule": "evenodd",
"d": "M4 42H44H4Z",
"fill": props.colors[1]
}, null), _createVNode("path", {
"d": "M4 42H44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "8",
"y": "28",
"width": "6",
"height": "14",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "21",
"y": "18",
"width": "6",
"height": "24",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "34",
"y": "6",
"width": "6",
"height": "36",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});
export default BytedChartHistogramTwo;