UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

10 lines (9 loc) 379 B
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;