React-slick: Is there a way to hide the prev and next buttons with passing custom empty buttons to the component?

Created on 21 Mar 2018  路  1Comment  路  Source: akiran/react-slick

question

Most helpful comment

There are several ways to hide the arrows:
Props solution
```javascript
arrows: false


CSS solution
```css
.slick-arrow {
  display: none;
}

But the one that you're looking for can be:

nextArrow: <br />,
prevArrow: <br />,

>All comments

There are several ways to hide the arrows:
Props solution
```javascript
arrows: false


CSS solution
```css
.slick-arrow {
  display: none;
}

But the one that you're looking for can be:

nextArrow: <br />,
prevArrow: <br />,
Was this page helpful?
0 / 5 - 0 ratings

Related issues

eternalsky picture eternalsky  路  3Comments

rohitgoyal7 picture rohitgoyal7  路  3Comments

laveesingh picture laveesingh  路  3Comments

darkalor picture darkalor  路  4Comments

adamthewan picture adamthewan  路  4Comments