New rewrite with svelte and pocketbase
This commit is contained in:
parent
72bfc2ed89
commit
160617af60
95 changed files with 4402 additions and 0 deletions
5
frontend/src/lib/components/base/Input.svelte
Normal file
5
frontend/src/lib/components/base/Input.svelte
Normal file
|
@ -0,0 +1,5 @@
|
|||
<script>
|
||||
let { type, placeholder = "", name = "", value = $bindable(), ...restProps} = $props()
|
||||
</script>
|
||||
|
||||
<input type={type} placeholder={placeholder} name={name} class="flex h-auto min-h-9 w-full border-l-orange-500 border-l-4 bg-transparent px-3 py-1 text-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50" bind:value {...restProps} />
|
Loading…
Add table
Add a link
Reference in a new issue