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/log
Usage
import { Log } from "@/components/ui/log";<Log
entries={[
{ level: "info", message: "Server started on port 3000" },
{ level: "warn", message: "Deprecated API call detected" },
{ level: "error", message: "Failed to connect to database" },
]}
height={10}
showTimestamp
follow
/>API Reference
Log
| Prop | Type | Default |
|---|---|---|
entries | LogEntry[] | required |
height | number | 10 |
showTimestamp | boolean | true |
filter | string | - |
follow | boolean | false |
LogEntry
| Prop | Type | Default |
|---|---|---|
level | "debug" | "info" | "warn" | "error" | required |
message | string | required |
timestamp | Date | - |