UNPKG

@expofp/floorplan

Version:

Interactive floor plan library for expos and events

21 lines 902 B
import "./ScrollableRow.scss"; import React, { ReactNode } from "react"; export interface ScrollableRowProps { children: ReactNode; ariaLabel: string; leftAriaLabel: string; rightAriaLabel: string; className?: string; scrollAmount?: number; mobileBreakpoint?: number; showArrowsOnMobile?: boolean; arrowPosition?: "inside" | "outside"; scrollBehavior?: "smooth" | "auto"; isRtl?: boolean; enableDragScroll?: boolean; dragScrollSensitivity?: number; onScroll?: (scrollLeft: number) => void; } declare const ScrollableRow: ({ children, ariaLabel, leftAriaLabel, rightAriaLabel, className, scrollAmount, mobileBreakpoint, showArrowsOnMobile, arrowPosition, scrollBehavior, isRtl, enableDragScroll, dragScrollSensitivity, onScroll, }: ScrollableRowProps) => React.JSX.Element; export default ScrollableRow; //# sourceMappingURL=ScrollableRow.d.ts.map