@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
18 lines (14 loc) • 560 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { AllHTMLAttributes, ReactNode } from 'react';
interface ScrollAreaProps extends AllHTMLAttributes<HTMLDivElement> {
children: ReactNode;
contentClassName?: string;
horizontal?: boolean;
scrollbarOnHover?: boolean;
vertical?: boolean;
}
declare const ScrollArea: {
({ children, contentClassName, horizontal, scrollbarOnHover, vertical, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
displayName: string;
};
export { ScrollArea, type ScrollAreaProps };