UNPKG

@brizy/ui

Version:
10 lines (9 loc) 382 B
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>>;