UNPKG

@snowball-tech/fractal

Version:

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

12 lines (9 loc) 299 B
import { AllHTMLAttributes, ReactNode } from 'react'; interface ScrollAreaProps extends AllHTMLAttributes<HTMLDivElement> { children: ReactNode; contentClassName?: string; horizontal?: boolean; scrollbarOnHover?: boolean; vertical?: boolean; } export type { ScrollAreaProps };