UNPKG

react-responsive-3d-carousel

Version:
18 lines (17 loc) 487 B
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;