@conduction/components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
12 lines (11 loc) • 345 B
TypeScript
import * as React from "react";
interface HorizontalOverflowWrapperProps {
children: React.ReactNode;
ariaLabels: {
scrollRightButton: string;
scrollLeftButton: string;
};
scrollMode?: "buttons" | "scrollbar";
}
export declare const HorizontalOverflowWrapper: React.FC<HorizontalOverflowWrapperProps>;
export {};