@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 478 B
TypeScript
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 };