Tweak icon picker modal

This commit is contained in:
Jon Staab
2026-03-11 16:15:37 -07:00
parent 99966a976e
commit bfc997ba37
3 changed files with 21 additions and 4 deletions
@@ -0,0 +1,13 @@
<script lang="ts">
import IconPicker from "@app/components/IconPicker.svelte"
type Props = {
onSelect: (iconUrl: string) => void
}
const {onSelect}: Props = $props()
</script>
<div class="w-96 rounded-box bg-base-100 p-4 shadow-2xl">
<IconPicker {onSelect} />
</div>