UNPKG

@sjsf-lab/shadcn-extras-theme

Version:

The shadcn-svelte-extras based theme for svelte-jsonschema-form

11 lines (10 loc) 504 B
import { ScrollArea as ScrollAreaPrimitive } from 'bits-ui'; import { type WithoutChild } from '../../../utils.js'; type $$ComponentProps = WithoutChild<ScrollAreaPrimitive.RootProps> & { orientation?: 'vertical' | 'horizontal' | 'both' | undefined; scrollbarXClasses?: string | undefined; scrollbarYClasses?: string | undefined; }; declare const ScrollArea: import("svelte").Component<$$ComponentProps, {}, "ref">; type ScrollArea = ReturnType<typeof ScrollArea>; export default ScrollArea;