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/number-input
Usage
import { NumberInput } from "@/components/ui/number-input";<NumberInput
label="Quantity"
min={0}
max={100}
step={1}
onChange={(value) => console.log("Value:", value)}
/>API Reference
NumberInput
| Prop | Type | Default |
|---|---|---|
value | number | - |
onChange | (value: number) => void | - |
onSubmit | (value: number) => void | - |
min | number | - |
max | number | - |
step | number | 1 |
placeholder | string | "" |
label | string | - |
id | string | - |
format | (n: number) => string | - |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
paddingX | number | 1 |
cursor | string | "█" |
stepHint | string | "↑ +{step} ↓ -{step}" |