UNPKG

ds-smart-ui

Version:

Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.

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;