UI Controls

SimpleSelect

Minimal dropdown select component with clean styling.

Props

PropTypeDefaultDescription
optionsstring[]—Array of option values
valuestring—Selected value (bindable)
labelstring—Optional label

Import

import { SimpleSelect } from '@the-vcsi/scrolly-kit';

Usage

<script>
  import { SimpleSelect } from '@the-vcsi/scrolly-kit';
  let selected = $state('option1');
</script>

<SimpleSelect
  options={['option1', 'option2', 'option3']}
  bind:value={selected}
  label="Choose an option"
/>