UNPKG
@cocoy/kit-components
Version:
latest (1.0.0)
1.0.0
一些前端组件
@cocoy/kit-components
/
dist
/
SvgIcon
/
index.d.ts
8 lines
(7 loc)
•
205 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
SVGProps
}
from
'react'
;
export
type
SvgIconProps
= {
iconClass
:
string
;
className
?:
string
; } &
SVGProps
<
SVGSVGElement
>;
declare
const
SvgIcon
:
FC
<
SvgIconProps
>;
export
{
SvgIcon
};