cyphertap
Version:
Nostr, Lightning and Ecash on a single Button component
11 lines (10 loc) • 504 B
TypeScript
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;