Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 363 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 363 Bytes

TDesign Icons for Vue 3

安装

  • npm i tdesign-icons-vue-next

使用

// svgsprite
import { Icon } from "tdesign-icons-vue-next";

<Icon name="close" />;

// iconfont
import { IconFont } from "tdesign-icons-vue-next";

<IconFont name="close" />;

// single icon
import { CloseIcon, TimeIcon } from "tdesign-icons-vue-next";

<CloseIcon />;