UNPKG
r-parts
Version:
latest (0.0.3)
0.0.3
0.0.1
## 使用方法
github.com/LarryKameZhao/r-parts
LarryKameZhao/r-parts
r-parts
/
dist
/
lib
/
icon
/
Icon.d.ts
9 lines
(8 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
import
'./importIcons'
;
import
'./icon.scss'
;
interface
IconProps
extends
React
.
SVGAttributes
<
SVGElement
> {
name
:
string
; }
declare
const
Icon
:
React
.
FunctionComponent
<
IconProps
>;
export
default
Icon
;