@bothub-chat/ui
Version:
Bothub UI Components
9 lines (8 loc) • 320 B
TypeScript
import { PropsWithChildren } from 'react';
import { ArrowsSize } from './types';
type SliderProps = {
arrowsSize?: ArrowsSize;
gap?: number;
} & PropsWithChildren;
export declare const Slider: ({ arrowsSize, gap, children, }: SliderProps) => import("react/jsx-runtime").JSX.Element;
export * from './useSlider';