lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines (10 loc) • 360 B
TypeScript
import { ComponentChildren } from "preact";
import { CSSProperties } from "preact/compat";
type AppBarProps = {
className?: string;
children?: ComponentChildren;
style?: CSSProperties;
noPadding?: boolean;
};
declare const AppBar: ({ className, style, children, noPadding }: AppBarProps) => import("preact").JSX.Element;
export default AppBar;