alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
10 lines (9 loc) • 379 B
TypeScript
import { 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;