@fe6/icon-cube-vue
Version:
Water Icon 的支持自定义图标
19 lines • 1.6 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export default IconWrapper('antd-check-square', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"d": "M46.08,0 L1.92,0 C0.858,0 0,0.858 0,1.92 L0,46.08 C0,47.142 0.858,48 1.92,48 L46.08,48 C47.142,48 48,47.142 48,46.08 L48,1.92 C48,0.858 47.142,0 46.08,0 Z M43.68,43.68 L4.32,43.68 L4.32,4.32 L43.68,4.32 L43.68,43.68 Z",
"fill": props.colors[0]
}, null), _createVNode("path", {
"d": "M4.32,43.68 L43.68,43.68 L43.68,4.32 L4.32,4.32 L4.32,43.68 Z M12.12,21.612 L14.934,21.612 C15.546,21.612 16.128,21.906 16.488,22.41 L20.76,28.338 L30.192,15.258 C30.552,14.76 31.128,14.46 31.746,14.46 L34.56,14.46 C34.95,14.46 35.178,14.904 34.95,15.222 L22.314,32.742 C21.9556889,33.2421067 21.3782183,33.5387561 20.763,33.5387561 C20.1477817,33.5387561 19.5703111,33.2421067 19.212,32.742 L11.73,22.374 C11.502,22.056 11.73,21.612 12.12,21.612 Z",
"fill": props.colors[1]
}, null), _createVNode("path", {
"d": "M19.212,32.742 C19.5703111,33.2421067 20.1477817,33.5387561 20.763,33.5387561 C21.3782183,33.5387561 21.9556889,33.2421067 22.314,32.742 L34.95,15.222 C35.178,14.904 34.95,14.46 34.56,14.46 L31.746,14.46 C31.128,14.46 30.552,14.76 30.192,15.258 L20.76,28.338 L16.488,22.41 C16.128,21.906 15.546,21.612 14.934,21.612 L12.12,21.612 C11.73,21.612 11.502,22.056 11.73,22.374 L19.212,32.742 L19.212,32.742 Z",
"fill": props.colors[2]
}, null)]);
});