react-slidy
react-slidy copied to clipboard
Support gap between items?
Hello, I hope this library support gap prop for the component, it's very helpful
Do you mean to have space between items in multiple slides? You can achieve this by wrapping your image in a div and add it a margin: 0 X value to it.
js
<ReactSlidy numOfSlides={3}>
<Number className="item" num={1} />
<Number className="item" num={1} />
<Number className="item" num={1} />
<Number className="item" num={1} />
</ReactSlidy>
css
.item{
margin: 0 20px;
}