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/diff-view
Usage
import { DiffView } from "@/components/ui/diff-view";<DiffView
filename="config.ts"
oldText={"const port = 3000;\nconst host = 'localhost';"}
newText={"const port = 8080;\nconst host = 'localhost';\nconst debug = true;"}
/>API Reference
DiffView
| Prop | Type | Default |
|---|---|---|
oldText | string | required |
newText | string | required |
filename | string | - |
language | string | - |
mode | "unified" | "split" | "inline" | "unified" |
context | number | 3 |
showLineNumbers | boolean | false |