Made of something. A dark steel conduit with thirty-six coil ribs, structural braces, blue-white plasma and a connected exhaust.

The moment. Actual progress drives charge excitation. At completion the collar seats and the right vent releases once. Pausing or reversing the value pauses or reverses charge.

Yours to adapt. Copy the component source, styles and materials. Functional text stays live, effects respect reduced motion, and the artwork requires no remote hosting.

Try it

Start a charge to watch the core build towards completion.

Install

Add it with the shadcn CLI, or copy the source manually.

Release candidate: public installation becomes available after deployment. Use an existing React 19 project with shadcn initialized and a components.json file. The CLI installs the source, CSS, embedded materials, MIT licence and font notices together.

Terminal
npx shadcn@latest add https://seanportfol.io/r/grimkit-forge-progress.json
Prefer a namespace? Register the registry once.
Terminal
npx shadcn@latest registry add @seanlynch=https://seanportfol.io/r/{name}.json
Terminal
npx shadcn@latest add @seanlynch/grimkit-forge-progress

Usage

Copy this example into a separate file, not over the installed component. The @/ alias points to your source root. In Next.js this is a Client Component; Vite also accepts the directive. Replace demonstration actions with your application logic.

components/examples/forge-progress-demo.tsx
"use client";

import { ForgeProgress } from "@/components/grimkit/forge-progress";

export default function Example({ progress = 60 }: { progress?: number }) {
  // Pass the actual progress reported by your application, from 0 to 100.
  return <ForgeProgress value={progress} label="Reactor charge" />;
}

API Reference

Props on Reactor Progress. Consult the included TypeScript source for supported native attributes.

PropTypeDefault
valueCaller-driven progress, clamped to 0โ€“100. The component never invents progress.numberโ€“
labelAccessible progress description.stringReactor charge
classNameAdditional class on the control surface; does not replace the material styles.stringโ€“
effectsAuto honours reduced motion; off disables decorative motion and particles."auto" | "off""auto"

Information

Category
GrimKit
Files
  • components/grimkit/forge-progress.tsx
  • components/grimkit/modern-titan-conduit.tsx
  • components/grimkit/modern-foundation.css
  • components/grimkit/modern-titan-conduit.css
  • components/grimkit/modern-titan-conduit-materials.css
  • components/grimkit/LICENSE.txt
  • components/grimkit/Saira-OFL.txt
  • components/grimkit/JetBrainsMono-OFL.txt
Dependencies
React 19 and React DOM 19; no additional runtime packages
Compatibility
React 19, TypeScript, CSS imports, Modern browsers
Version
0.2.0
Updated
Sep 22, 2026
Registry
grimkit-forge-progress