// Feedback
Progress
Displays task progress with a linear indicator.
// Rendering preview…
// Install
npx shadcn@latest add @dakik/progress// Usage
1import { Progress, ProgressTrack, ProgressRange, ProgressValue } from "@/components/ui/progress";23<Progress />// Code
1"use client";23import {4 Progress as ArkProgress,5 useProgressContext,6} from "@ark-ui/react/progress";7import type React from "react";8import { cn } from "@/lib/utils";9import { FieldLabel } from "@/registry/react/components/field";1011export const useProgress = useProgressContext;1213interface ProgressProps14 extends Omit<React.ComponentProps<typeof ArkProgress.Root>, "value"> {15 /**16 * Shows indeterminate progress17 *18 * @default false19 */20 indeterminate?: boolean;21 /**22 * The value of the progress bar23 *24 * @default 025 */26 value?: number;27}28// Dependencies