J.A.R.V.I.S-rust/frontend/src/components/elements/SearchBar.svelte

20 lines
563 B
Svelte
Raw Normal View History

2026-01-04 22:50:34 +05:00
<script lang="ts">
let searchQuery = ""
</script>
2026-01-04 22:50:34 +05:00
<div id="search-form" class="search" class:active={searchQuery !== ""}>
<form action="#" method="GET">
2026-01-04 22:50:34 +05:00
<input
bind:value={searchQuery}
type="text"
name="q"
placeholder="Введите команду или скажите «Джарвис» ..."
autocomplete="off"
minlength="3"
maxlength="30"
/>
<button type="submit" aria-label="Search"></button>
<small>Enter</small>
</form>
2026-01-04 22:50:34 +05:00
</div>