@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
7 lines (6 loc) • 503 B
TypeScript
import { ScrollArea as ScrollAreaPrimitive } from 'radix-ui';
import { ComponentProps, Ref } from 'react';
export declare const ScrollArea: ({ scrollViewRef, className, children, onScroll, ...props }: ComponentProps<typeof ScrollAreaPrimitive.Root> & {
scrollViewRef?: Ref<HTMLDivElement | null>;
}) => import("react").JSX.Element;
export declare const ScrollBar: ({ className, orientation, ...props }: ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>) => import("react").JSX.Element;