Skip to content

Img with fallback to placeholder text on image load error

License

Notifications You must be signed in to change notification settings

p0o/react-advanced-img

Repository files navigation

React Advanced Img

Img with fallback to placeholder on image load error

This library works as a substitute for your <img> tag. The only difference is you can send a placeholder text and the library will generate an image with that text using dummyimage.com

I created this component for busy.org app. It's open source, take a look!

Install

npm i react-advanced-img --save

Example

import React from 'react';
import Img from 'react-advanced-img';

export default MyImageComp extends React.Component {
  constructor(props) {
    super(props);
  }
  
  render() {
    return (
      <Img
        src='http://wrongImageUrl'
        placeholder='Yay!!'
      />
    );
  }
}

API

className, style, width, height, placeholder, src

License

MIT

About

Img with fallback to placeholder text on image load error

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published