react-infinite-logo-slider
Version:
A slider of logos or react components that scroll horizontally infinitely
19 lines (18 loc) • 423 B
TypeScript
import React from "react";
interface SliderProps {
children: React.ReactElement[];
width?: string;
duration?: number;
toRight?: boolean;
pauseOnHover?: boolean;
blurBorders?: boolean;
blurBorderColor?: string;
}
interface SlideProps {
children: React.ReactNode;
width?: string;
}
declare const Slider: React.FC<SliderProps> & {
Slide: React.FC<SlideProps>;
};
export default Slider;