@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
20 lines (19 loc) • 1.02 kB
TypeScript
import { ThemeProps } from "../../core/system/index.types.js";
import { Component, HTMLStyledProps } from "../../core/components/index.types.js";
import "../../core/index.js";
import { ScrollAreaStyle } from "./scroll-area.style.js";
import { UseScrollAreaProps } from "./use-scroll-area.js";
import "../../index.js";
import * as react2685 from "react";
//#region src/components/scroll-area/scroll-area.d.ts
interface ScrollAreaProps extends HTMLStyledProps, ThemeProps<ScrollAreaStyle>, UseScrollAreaProps {}
declare const ScrollAreaPropsContext: react2685.Context<Partial<ScrollAreaProps> | undefined>, useScrollAreaPropsContext: () => Partial<ScrollAreaProps> | undefined;
/**
* `ScrollArea` is a component that displays a customized scrollbar.
*
* @see https://yamada-ui.com/docs/components/scroll-area
*/
declare const ScrollArea: Component<"div", ScrollAreaProps>;
//#endregion
export { ScrollArea, ScrollAreaProps, ScrollAreaPropsContext, useScrollAreaPropsContext };
//# sourceMappingURL=scroll-area.d.ts.map