feat(ComparisonView): add wrapper for search bar
This commit is contained in:
14
src/widgets/ComparisonView/ui/Search/Search.svelte
Normal file
14
src/widgets/ComparisonView/ui/Search/Search.svelte
Normal file
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import { filterManager } from '$features/GetFonts';
|
||||
import { SearchBar } from '$shared/ui';
|
||||
</script>
|
||||
|
||||
<div class="p-6 border-b border-black/5">
|
||||
<SearchBar
|
||||
id="font-search"
|
||||
class="w-full"
|
||||
placeholder="Typeface Search"
|
||||
bind:value={filterManager.queryValue}
|
||||
fullWidth
|
||||
/>
|
||||
</div>
|
||||
Reference in New Issue
Block a user