UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS

17 lines (14 loc) 527 B
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; }; } export type { ScrollAreaProps };