@fruits-chain/icons-react
v0.0.34
Published
🎨 React Icon
Downloads
5,067
Keywords
Readme
安装
yarn add @fruits-chain/icons-react
使用
import React from 'react'
import { SuccessOutline } from '@fruits-chain/icons-react'
const App: React.FC = () => {
return (
<span style={{ color: '#098', fontSize: 20 }}>
<SuccessOutline />
</span>
)
}