@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
23 lines (19 loc) • 813 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ScrollAreaProps as ScrollAreaProps$1, ScrollAreaScrollbarProps } from '@radix-ui/react-scroll-area';
import { ReactNode, CSSProperties } from 'react';
interface ScrollAreaProps extends ScrollAreaProps$1 {
children: ReactNode;
orientation?: 'both' | ScrollAreaScrollbarProps['orientation'];
scrollHideDelay?: number;
type?: ScrollAreaProps$1['type'];
viewport?: {
className?: string;
rootClassName?: string;
style?: CSSProperties;
};
}
declare const LegacyScrollArea: {
({ children, orientation, scrollHideDelay, type, viewport, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
displayName: string;
};
export { LegacyScrollArea, type ScrollAreaProps as LegacyScrollAreaProps };