UUUUPPPPP work

This commit is contained in:
2026-03-25 02:03:59 +01:00
parent c857900860
commit df8bd891a2
32 changed files with 1126 additions and 233 deletions

13
components_/InputView.js Normal file
View File

@@ -0,0 +1,13 @@
import { $, html } from "sigpro";
$.component(
"c-input-view",
(props) => {
return html`
<button type="button" class="btn btn-ghost btn-xs btn-circle opacity-50 hover:opacity-100" @click=${() => props.show(!props.show())}>
<span class="${() => (props.show() ? "icon-[lucide--eye-off]" : "icon-[lucide--eye]")} size-4"></span>
</button>
`;
},
["show"],
);