@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
14 lines • 692 B
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var AntdSmallDash = IconWrapper('antd-small-dash', false, function (props) {
return _createVNode("svg", {
"width": props.size,
"height": props.size,
"viewBox": "0 0 48 48",
"fill": "none"
}, [_createVNode("path", {
"fill": props.colors[0],
"d": "M0,22 L4.32,22 L4.32,26.32 L0,26.32 L0,22 Z M10.92,22 L15.24,22 L15.24,26.32 L10.92,26.32 L10.92,22 Z M32.76,22 L37.08,22 L37.08,26.32 L32.76,26.32 L32.76,22 Z M43.68,22 L48,22 L48,26.32 L43.68,26.32 L43.68,22 Z M21.84,22 L26.16,22 L26.16,26.32 L21.84,26.32 L21.84,22 Z"
}, null)]);
});
export default AntdSmallDash;