UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 478 B
import React from 'react'; import { CarouselProps } from '@mantine/carousel'; export type DragFreeCarouselProps = { children: React.ReactNode; gapItem?: number; slideSize?: string | number; } & Omit<CarouselProps, 'children' | 'slideGap' | 'slideSize'>; declare const DragFreeCarousel: ({ children, gapItem, slideSize, withControls, withIndicators, dragFree, align, ...otherProps }: DragFreeCarouselProps) => React.JSX.Element; export { DragFreeCarousel };