You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
359 B
20 lines
359 B
import { CarouselProps } from '.'; |
|
|
|
export const defaultProps: Required<CarouselProps> = { |
|
children: [], |
|
show: 1, |
|
slide: 1, |
|
transition: 0.5, |
|
swiping: false, |
|
swipeOn: 1, |
|
responsive: false, |
|
infinite: true, |
|
className: '', |
|
useArrowKeys: false, |
|
a11y: {}, |
|
dynamic: false, |
|
paginationCallback: null, |
|
pageCount: 0, |
|
rightArrow: null, |
|
leftArrow: null |
|
};
|
|
|