@baseplate-dev/ui-components
Version:
Shared UI component library
11 lines • 608 B
TypeScript
import type * as React from 'react';
import { ScrollArea as ScrollAreaPrimitive } from 'radix-ui';
/**
* Augments native scroll functionality for custom, cross-browser styling.
*
* https://ui.shadcn.com/docs/components/scroll-area
*/
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): React.ReactElement;
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): React.ReactElement;
export { ScrollArea, ScrollBar };
//# sourceMappingURL=scroll-area.d.ts.map