alinea
Version:
Headless git-based CMS
10 lines (9 loc) • 384 B
TypeScript
import { type HTMLAttributes } from 'react';
export type PaneProps = {
id: string;
defaultWidth?: number;
minWidth?: number;
maxWidth?: number;
resizable: 'left' | 'right';
} & HTMLAttributes<HTMLDivElement>;
export declare function Pane({ id, children, resizable, defaultWidth, minWidth, maxWidth, ...props }: PaneProps): import("react/jsx-runtime").JSX.Element;