UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

9 lines (8 loc) 274 B
import { ComponentChildren } from "preact"; type TitleBarProps = { title?: string; children?: ComponentChildren; gap?: number; }; declare const TitleBar: ({ title, children, gap }: TitleBarProps) => import("preact").JSX.Element; export default TitleBar;