react-responsive-3d-carousel
Version:
React Responsive 3D Carousel
18 lines (17 loc) • 487 B
TypeScript
import React from 'react';
import './Arrows.scss';
export interface ArrowsProps {
width?: string;
height?: string;
color?: string;
hoverColor?: string;
shadow?: string;
prevIcon?: JSX.Element;
nextIcon?: JSX.Element;
nextArrowTranslate?: [string, string];
prevArrowTranslate?: [string, string];
onClickNext?: React.MouseEventHandler;
onClickPrev?: React.MouseEventHandler;
}
declare const Arrows: React.FC<ArrowsProps>;
export default Arrows;