UNPKG
yj-design
Version:
latest (1.0.1)
1.0.1
1.0.0
yj-design
yj-design
/
lib
/
Button
/
index.d.ts
8 lines
(7 loc)
•
166 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
interface
ButttonProps
{
type
:
string
;
size
:
string
; }
declare
const
Button
:
React
.
FC
<
ButttonProps
>;
export
default
Button
;