UNPKG
@nicecode/funny
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
funny,一些有趣的代码,funny code
nicecoders.github.io
nicecoders/nicecode
@nicecode/funny
/
es
/
funnyButton
/
index.d.ts
9 lines
(8 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
FC
}
from
'react'
;
import
'./index.less'
;
interface
FunnyButtonProps
{
mode
:
'normal'
|
'ease'
|
'wave'
;
title
:
string
; }
declare
const
FunnyButton
:
FC
<
FunnyButtonProps
>;
export
default
FunnyButton
;