UNPKG

tanuki-ui

Version:

HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor

25 lines (24 loc) 614 B
import { default as React } from 'react'; export type WindowProps = { id?: string; children?: React.ReactNode; height?: number; width?: number; top?: number; left?: number; resizable?: boolean; expand?: boolean; fullscreen?: boolean; onClose?: () => void; title?: string; open?: boolean; style?: React.CSSProperties; titleBarMode?: "default" | "hidden"; icons?: { close?: React.ReactNode; expand?: React.ReactNode; fullscreen?: React.ReactNode; }; }; export declare const Window: React.FC<WindowProps>; export default Window;