Package Exports
- react-infinite-logo-slider
 - react-infinite-logo-slider/build/index.js
 
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-infinite-logo-slider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme

Infinite logo slider
Installation
Install with npm
  npm install react-infinite-logo-sliderUsage/Examples
import Slider from 'react-infinite-logo-slider'
const Component = () => {
    
    return (
        <Slider>
            <Slider.Slide>
                <img src="/slider/any.png" alt="any" className='w-36' />
            </Slider.Slide>
            <Slider.Slide>
                <img src="/slider/any2.png" alt="any2" className='w-36' />
            </Slider.Slide>
            <Slider.Slide>
                <img src="/slider/any3.png" alt="any3" className='w-36' />
            </Slider.Slide>
            <Slider.Slide>
                <img src="/slider/any4.png" alt="any4" className='w-36' />
            </Slider.Slide>
        </Slider>
    )
}              
                     
export default ComponentSlider props
  <Slider
    width="200px"
    duration={40},
    toRight={false},
    pauseOnHover={false},
    blurBorders={false},
    blurBoderColor={'#fff'}
  >
    ...
  </Slider>| Prop | Type | Default | Description | 
|---|---|---|---|
width | 
string | 
200px | 
Required - Width of the ITEM | 
duration | 
number | 
40 | 
The speed with which it moves | 
toRight | 
boolean | 
false | 
It moves in the right direction | 
pauseOnHover | 
boolean | 
false | 
The animation pauses on hover | 
blurBorders | 
boolean | 
false | 
A blur effect will appear at the ends of the slider | 
blurBoderColor | 
string | 
#fff | 
Color of blur | 
Slide props
  <Slider.Slide
    id="sliderId"
    key="any_key"
    className="awesome_classname ...",
    ...
  >
    ...
  </Slider.Slide>| Prop | Type | Description | 
|---|---|---|
props | 
any | 
You can pass any props to this. |