BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/blacksite/input

Input

blacksite/input
FreeComponent

Bordered input with monospace + tactical-style focus ring.

Install it

npx shadcn@latest add https://blacksite.sh/r/input.json

Source

registry/blacksite/ui/input.tsxblacksite.sh/r/input.json
1import * as React from "react";
2
3import { cn } from "@/lib/utils";
4
5export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
6 mono?: boolean;
7}
8
9const Input = React.forwardRef<HTMLInputElement, InputProps>(
10 ({ className, type = "text", mono = false, ...props }, ref) => {
11 return (
12 <input
13 ref={ref}
14 type={type}
15 className={cn(
16 "border-border bg-input flex h-8 w-full rounded-sm border px-2.5 py-1 text-sm",
17 "placeholder:text-foreground-subtle",
18 "focus:ring-ring focus:ring-offset-background focus:border-primary/60 focus:ring-2 focus:ring-offset-1 focus:outline-none",
19 "disabled:cursor-not-allowed disabled:opacity-50",
20 "file:border-0 file:bg-transparent file:text-sm file:font-medium",
21 mono && "font-mono",
22 className,
23 )}
24 {...props}
25 />
26 );
27 },
28);
29Input.displayName = "Input";
30
31export { Input };

Facts

Registry
blacksite
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
First indexed
2026-08-02
Last confirmed
yesterday

Go to the source

blacksite.sh refrakts/blacksite-ui on GitHub Raw registry item This item as JSON

More from blacksite

All 25 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
App headerapp-headerblacksiteComponentsFreeno deps
BadgebadgeblacksiteComponentsFreeno deps
Bar chartbar-chartblacksiteComponentsFreeno deps
ButtonbuttonblacksiteComponentsFreeno deps
CardcardblacksiteComponentsFreeno deps
Chart tooltipchart-tooltipblacksiteComponentsFreeno deps
Data listdata-listblacksiteComponentsFreeno deps
Gantt timelinegantt-timelineblacksiteComponentsFreeno deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex