UNPKG

@gpa-gemstone/react-interactive

Version:
14 lines (13 loc) 367 B
import * as React from 'react'; interface IProps { MinWidth: number; MaxWidth: number; Width: number; Open: boolean; Title: string; GetOverride?: (func: (open: boolean) => void) => void; OnChange?: (open: boolean) => void; ShowClosed?: boolean; } declare const SplitDrawer: React.FunctionComponent<IProps>; export default SplitDrawer;