@brizy/ui
Version:
React elements in Brizy style
10 lines (9 loc) • 382 B
TypeScript
import React, { ReactNode } from "react";
import Scrollbars, { ScrollbarProps } from "react-custom-scrollbars";
export interface Props {
autoHeightMax?: ScrollbarProps["autoHeightMax"];
theme: "dark" | "light";
children: ReactNode;
autoHide?: boolean;
}
export declare const LegacyScrollBar: React.ForwardRefExoticComponent<Props & React.RefAttributes<Scrollbars>>;