'use client'; /** * Scroller * * Smooth scroll container with optional snap points and scroll indicators. * Supports both horizontal and vertical orientations. * * @example * import { Scroller, ScrollerItem } from '@djangocfg/ui-tools/scroller'; * * * Item 1 * Item 2 * */ export { Scroller, ScrollerItem, } from './parts'; export { ScrollerProvider, useScrollerContext, } from './context'; export type { ScrollerProps, ScrollerItemProps, ScrollerIndicatorProps, ScrollerContextValue, SnapAlign, } from './types';