UNPKG
tenacity-ui
Version:
latest (1.0.1)
1.0.1
1.0.0
tenacity ui component library
tenacity-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
;