@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
71 lines • 2.17 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var BytedListCheckbox = IconWrapper('byted-list-checkbox', 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": "M20 24H44H20Z",
"fill": props.colors[1]
}, null), _createVNode("path", {
"d": "M20 24H44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"fill-rule": "evenodd",
"clip-rule": "evenodd",
"d": "M20 38H44H20Z",
"fill": props.colors[1]
}, null), _createVNode("path", {
"d": "M20 38H44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("path", {
"fill-rule": "evenodd",
"clip-rule": "evenodd",
"d": "M20 10H44H20Z",
"fill": props.colors[1]
}, null), _createVNode("path", {
"d": "M20 10H44",
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linecap": props.strokeLinecap,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "4",
"y": "34",
"width": "8",
"height": "8",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "4",
"y": "20",
"width": "8",
"height": "8",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null), _createVNode("rect", {
"x": "4",
"y": "6",
"width": "8",
"height": "8",
"fill": props.colors[1],
"stroke": props.colors[0],
"stroke-width": props.strokeWidth,
"stroke-linejoin": props.strokeLinejoin
}, null)]);
});
export default BytedListCheckbox;