UNPKG
@darthmaim/react-barcode
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Renders EAN barcodes
github.com/darthmaim/barcode
darthmaim/barcode
@darthmaim/react-barcode
/
lib
/
index.d.ts
10 lines
(9 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
FC
}
from
'react'
;
interface
BarcodeProps
{
value
:
string
;
height
?:
number
|
'auto'
;
width
?:
number
;
flat
?:
boolean
; }
export
declare
const
Barcode
:
FC
<
BarcodeProps
>;
export
{};