@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
18 lines (17 loc) • 598 B
TypeScript
import * as React from 'react';
import { Props as SimpleBarProps } from 'simplebar-react';
import 'simplebar-react/dist/simplebar.min.css';
type Props = React.PropsWithChildren<{
style?: React.CSSProperties;
maxContent?: boolean;
}> & Omit<SimpleBarProps, 'style'>;
type SimpleBarClassesType = Readonly<{
contentWrapper: string;
content: string;
track: string;
hover: string;
scrollbarVisibleBefore: string;
}>;
export declare const simpleBarClasses: SimpleBarClassesType;
declare const SimpleScrollbar: React.FC<Props>;
export default SimpleScrollbar;