Add OwlBoard API Library

Add styling to UI Components
This commit is contained in:
2026-03-19 10:59:25 +00:00
parent d9b60daa8b
commit deb151075a
8 changed files with 81 additions and 13 deletions

View File

@@ -3,6 +3,9 @@ import BaseCard from '$lib/components/ui/cards/BaseCard.svelte';
import Textbox from '$lib/components/ui/Textbox.svelte';
import Button from '$lib/components/ui/Button.svelte';
let { onsearch }: { onsearch: (s: string, e: string) => void } = $props();
let startValue = $state('');
let endValue = $state('');
@@ -23,7 +26,7 @@ function resetValues(): void {
</div>
</div>
<div class="button-wrapper">
<Button>Search</Button>
<Button onclick={() => onsearch(startValue, endValue)}>Search</Button>
<Button onclick={resetValues}>Reset</Button>
</div>
</div>