UNPKG
quick-ui-design
Version:
latest (0.0.1)
0.0.1
A Quick UI library for user interface design with React fast and easy.
nazmulhaque.netlify.app
quick-ui-design
/
dist
/
App
/
components
/
DataDisplay
/
QRCode
/
index.d.ts
10 lines
(9 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
QRProps
}
from
'antd/es/qr-code/interface'
;
import
{
FC
}
from
'react'
;
import
{
QRCODE
}
from
'../../Types'
;
export
interface
IQRCode
{
ctype
:
typeof
QRCODE
;
props
:
QRProps
; }
declare
const
QRCode
:
FC
<
IQRCode
>;
export
default
QRCode
;