An input where the user selects a value from within a given range.
npx sigma-ui@latest add slider
<script setup lang="ts"> import { ref } from 'vue' import { Slider } from '@/components/ui/slider' const model = ref(33) </script> <template> <Slider v-model="model" :max="100" :step="1" /> </template>
How many minutes are you available?30 min
Table of content