UNPKG
react-img-component
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
A responsive lazy-loading image component for React
react-img-component
/
dist
/
index.d.ts
10 lines
(8 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
ReactImageProps
{
src
:
string
;
alt
:
string
;
placeholderSrc
?:
string
; [
key
:
string
]:
any
; }
declare
function
ReactImage
(
props
:
ReactImageProps
):
JSX
.
Element
;
export
{
ReactImage
as
default
};