⚠️ Project in development, will be released soon

Progress

Displays an indicator of progress.

Preview

Installation

bash
npm install reka-ui

Examples

Basic

vue
<script setup lang="ts">
import { Progress } from '@/components/ui/progress'

const progress = ref(50)
</script>

<template>
  <Progress v-model="progress" />
</template>
Edit this page on GitHub