1.14.0 • Published 4 years ago

@schibstedspain/sui-image-lazy-load v1.14.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

SUI Image Lazy Load

SUI ImageLazyLoad component is an image element that can be loaded in a deferred way.

Installation

$ npm install --save @schibstedspain/sui-image-lazy-load

Usage

import React, { Component } from 'react'
import ImageLazyLoad from '@schibstedspain/sui-image-lazy-load'

class MyCard extends Component {
  render () {
    return (<ImageLazyLoad />)
  }
}