mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
516 B
Markdown
21 lines
516 B
Markdown
---
|
|
sidebar_position: 2
|
|
title: Icon 图标
|
|
---
|
|
|
|
```ts
|
|
import { Icon } from '@capital/component';
|
|
```
|
|
|
|
`tailchat` 的 icon 解决方案来自 `iconify`
|
|
|
|
使用方法很简单:
|
|
- 在下述网站中选择想要的图标: [https://icon-sets.iconify.design/](https://icon-sets.iconify.design/)
|
|
- 复制选中的key。传给 `Icon` 组件, 示例:
|
|
```tsx
|
|
<Icon icon="mdi:account" />
|
|
```
|
|
|
|
推荐使用`mdi`来统一化图标视觉设计:
|
|
[https://icon-sets.iconify.design/mdi/](https://icon-sets.iconify.design/mdi/)
|