mirror of
https://github.com/dbgate/dbgate
synced 2024-11-16 00:37:14 +00:00
15 lines
183 B
Svelte
15 lines
183 B
Svelte
|
<script>
|
||
|
export let placeholder;
|
||
|
</script>
|
||
|
|
||
|
<input type="text" {placeholder} />
|
||
|
|
||
|
<style>
|
||
|
input {
|
||
|
flex: 1;
|
||
|
min-width: 10px;
|
||
|
width: 10px;
|
||
|
border: none;
|
||
|
}
|
||
|
</style>
|