UNPKG

lingo3d

Version:

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

9 lines (8 loc) 257 B
type SwitchProps = { label?: string; onChange?: (on: boolean) => void; on?: boolean; compact?: boolean; }; declare const Switch: ({ label, onChange, on: onProp, compact }: SwitchProps) => import("preact").JSX.Element; export default Switch;