@indevstudio/react-split-panel
Version:
React split-pane component for TypeScript and React 17+
16 lines (15 loc) • 366 B
TypeScript
import { FC } from 'react';
import { SplitType } from './types';
export interface IPane {
initialSize?: string;
className?: string;
minSize?: string;
maxSize?: string;
__internal?: IPaneStyle;
}
export interface IPaneStyle {
split: SplitType;
size: string;
resizersSize: number;
}
export declare const Pane: FC<IPane>;