UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

9 lines (8 loc) 478 B
import type { HtmlIngredientProps } from '../types.js'; import type { ScrollbarProps } from '@zag-js/scroll-area'; import type { Merge } from 'type-fest'; export interface ScrollAreaScrollbarProps extends Merge<HtmlIngredientProps<'div', HTMLDivElement>, ScrollbarProps> { } declare const ScrollAreaScrollbar: import("svelte").Component<ScrollAreaScrollbarProps, {}, "ref">; type ScrollAreaScrollbar = ReturnType<typeof ScrollAreaScrollbar>; export default ScrollAreaScrollbar;