UNPKG
lester-ui
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
lester's ui component library
lester-ui
/
lib
/
SvgIcon
/
SvgIcon.d.ts
14 lines
(13 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** *
@name
SvgIcon
*
@author
Lester
*
@date
2021-05-08 14:28 */
import
React
from
'react'
;
interface
IndexProps
{
className
?:
string
;
name
:
string
;
onClick
?:
React
.
MouseEventHandler
; }
declare
const
SvgIcon
:
React
.
FC
<
IndexProps
>;
export
default
SvgIcon
;