@edancerys/ts-react-components-lib
Version:
23 lines (22 loc) • 541 B
TypeScript
import React from 'react';
export interface HorizontalSliderProps {
links?: LinkProps[];
margin?: string;
padding?: string;
maxWidth?: string;
minHeight?: string;
height?: string;
width?: string;
backgroundColor?: string;
border?: string;
borderRadius?: string;
hasIndicator?: boolean;
gap?: string;
className?: string;
}
interface LinkProps {
title?: string;
url?: string;
}
export declare const HorizontalSlider: React.FC<HorizontalSliderProps>;
export {};