UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

9 lines (8 loc) 372 B
import { type CSSProperties, type PropsWithChildren, type ReactElement } from "react"; interface ScrollableContainerProps { className?: string; style?: CSSProperties; scrollStyle?: CSSProperties; } export declare const ScrollableContainer: ({ children, className, style, scrollStyle, }: PropsWithChildren<ScrollableContainerProps>) => ReactElement; export {};