@benev/nubs
Version:
user-input system for web games
11 lines • 366 B
JavaScript
import { html } from "lit";
import { view } from "@chasemoskal/magical";
import editSvg from "../../../framework/icons/akar/edit.svg.js";
export const ToggleEditorButtonView = view({}, use => (toggleEditor) => {
return html `
<div class=toggle-editor @pointerdown=${toggleEditor}>
${editSvg}
</div>
`;
});
//# sourceMappingURL=toggle-editor-button.js.map