UNPKG

ds-smart-ui

Version:

Smart UI is a React component library that helps you build accessible and responsive web applications.

11 lines (10 loc) 298 B
export interface ScrollableProps { direction?: "horizontal" | "vertical"; children: React.ReactNode; className?: string; gap?: 0 | 4 | 8 | 14 | 18 | 22; height?: string | number; id?: string; } declare const Scrollable: React.FC<ScrollableProps>; export default Scrollable;