🗽 Makes selector sm by default
This commit is contained in:
@@ -3,7 +3,11 @@
|
|||||||
export let selectedOption: string = '';
|
export let selectedOption: string = '';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<select
|
||||||
|
bind:value={selectedOption}
|
||||||
|
on:change
|
||||||
|
class="select select-bordered select-sm lg:select-md max-w-xs {$$restProps.class || ''}"
|
||||||
|
>
|
||||||
{#each options as option}
|
{#each options as option}
|
||||||
<option value={option}>{option}</option>
|
<option value={option}>{option}</option>
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
Reference in New Issue
Block a user