UNPKG

split-pane-react-test

Version:
14 lines (13 loc) 425 B
import React, { PropsWithChildren } from 'react'; interface HTMLElementProps { title?: string; style?: React.CSSProperties; className?: string; role?: string; } export interface IPaneConfigs { maxSize?: number | string; minSize?: number | string; } export default function Pane({ children, style, className, role, title, }: PropsWithChildren<HTMLElementProps & IPaneConfigs>): JSX.Element; export {};