fumadocs-ui
Version:
The Radix UI version of Fumadocs UI
22 lines (21 loc) • 717 B
TypeScript
import * as React$1 from "react";
import * as Primitive from "@radix-ui/react-scroll-area";
//#region src/components/ui/scroll-area.d.ts
declare function ScrollArea({
className,
children,
...props
}: React$1.ComponentPropsWithRef<typeof Primitive.Root>): React$1.JSX.Element;
declare function ScrollViewport({
className,
children,
...props
}: React$1.ComponentPropsWithRef<typeof Primitive.Viewport>): React$1.JSX.Element;
declare function ScrollBar({
className,
orientation,
...props
}: React$1.ComponentPropsWithRef<typeof Primitive.Scrollbar>): React$1.JSX.Element;
type ScrollAreaProps = Primitive.ScrollAreaProps;
//#endregion
export { ScrollArea, ScrollAreaProps, ScrollBar, ScrollViewport };