@fe6/icon-vue
Version:
Water Icon 的 VUE3 图标
14 lines • 1.01 kB
JavaScript
import { createVNode as _createVNode } from "vue";
import { IconWrapper } from '../runtime';
export var AntdExclamation = IconWrapper('antd-exclamation', 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": "M20,43.6853933 C20,46.0682848 21.9317152,48 24.3146067,48 C26.6974982,48 28.6292135,46.0682848 28.6292135,43.6853933 C28.6292135,41.3025018 26.6974982,39.3707865 24.3146067,39.3707865 C21.9317152,39.3707865 20,41.3025018 20,43.6853933 Z M22.1573034,32.3595506 L26.4719101,32.3595506 C26.7685393,32.3595506 27.011236,32.1168539 27.011236,31.8202247 L27.011236,0.539325843 C27.011236,0.242696629 26.7685393,0 26.4719101,0 L22.1573034,0 C21.8606742,0 21.6179775,0.242696629 21.6179775,0.539325843 L21.6179775,31.8202247 C21.6179775,32.1168539 21.8606742,32.3595506 22.1573034,32.3595506 Z"
}, null)]);
});
export default AntdExclamation;