React
在 react 中使用图标
tsx
// 入口点导入
import { IconAlignCenter } from '@vrx-arco/icons-react'
// 子路径导入
import IconAlignRight from '@vrx-arco/icons-react/IconAlignRight'
export const App = ()=> {
return (
<div>
<IconAlignCenter style="font-size:30px;color:#ff6736;" />
<IconAlignRight style="font-size:30px;color:#ff6736;" />
</div>
)
}
安装
bash
$ npm i @vrx-arco/icons-react
bash
$ yarn add @vrx-arco/icons-react
bash
$ pnpm add @vrx-arco/icons-react
bash
$ bun add @vrx-arco/icons-react