5 lines
506 B
Svelte
5 lines
506 B
Svelte
<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} />
|