@s-ui/react-image-placeholder
v2.11.0
Published
> Shows a placeholder while loading an image. You can also set a fallback to be loaded in case it fails loading the image.
Downloads
297
Maintainers
Keywords
Readme
ImagePlaceholder
Shows a placeholder while loading an image. You can also set a fallback to be loaded in case it fails loading the image.
Installation
$ npm install @s-ui/react-image-placeholder --save
Usage
Basic usage
import ImagePlaceholder from '@s-ui/react-image-placeholder'
return (
<ImagePlaceholder
src='https://satyr.io/1000'
alt='1000x1000'
placeholder={
src: '...',
alt: '...'
...imageTagAttributes
}
fallback={
src: '...',
alt: '...'
...imageTagAttributes
}
/>
)
Find full description and more examples in the demo page.