@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
9 lines (8 loc) • 371 B
TypeScript
import { type WithElementRef } from 'bits-ui';
import type { HTMLAttributes } from 'svelte/elements';
type Props = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
orientation?: 'vertical' | 'horizontal' | 'both';
};
declare const ScrollArea: import("svelte").Component<Props, {}, "ref">;
type ScrollArea = ReturnType<typeof ScrollArea>;
export default ScrollArea;