Themes
- Default
- Catppuccin
- Dracula
- High Contrast
- High Contrast Light
- Monokai
- Nord
- One Dark
- Solarized
- Tokyo Night
- AMOLED
- Aura
- Ayu
- Carbonfox
- Catppuccin Frappe
- Catppuccin Macchiato
- Cobalt2
- Cursor
- Everforest
- Flexoki
- GitHub
- Gruvbox
- Kanagawa
- Lucent Orng
- Material
- Matrix
- Mercury
- Night Owl
- OC-2
- One Dark Pro
- OpenCode
- Orng
- Osaka Jade
- Palenight
- Rose Pine
- Shades of Purple
- Synthwave '84
- Vercel
- Vesper
- Zenburn
Utility
AI
Terminal
Installation
$ pnpm dlx shadcn@latest add @termcn/progress-circle
Usage
import { ProgressCircle } from "@/components/ui/progress-circle";<ProgressCircle value={75} size="sm" label="Memory" showPercent />Examples
Sizes
Terminal
import { Box } from "ink";
import { ProgressCircle } from "@/components/ui/progress-circle";
export function ProgressCircleSizes() {
return (
<Box gap={2}>
<ProgressCircle value={60} size="sm" />
<ProgressCircle value={45} size="md" label="CPU" />
<ProgressCircle value={88} size="lg" showPercent />
</Box>
);
}API Reference
ProgressCircle
| Prop | Type | Default |
|---|---|---|
value | number | required |
size | "sm" | "md" | "lg" | "sm" |
color | string | - |
label | string | - |
showPercent | boolean | false |