This component no longer exists. It was in neobrutal-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Input
neobrutal-ui/ninputRemovedComponent
neobrutal-ui publishes no description for this item.
Install it
npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/ninput.jsonSource
1"use client";23import { Input as InputPrimitive } from "@base-ui/react/input";4import * as React from "react";56import { cn } from "@/lib/utils";78function Input({ className, type, ...props }: React.ComponentProps<"input">) {9 return (10 <InputPrimitive11 type={type}12 data-slot="input"13 className={cn(14 "flex h-10 w-full rounded-base border-2 border-border bg-secondary-background selection:bg-main selection:text-main-foreground px-3 py-2 text-sm font-base text-foreground file:border-0 file:bg-transparent file:text-sm file:font-heading placeholder:text-foreground/50 focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-black focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",15 className,16 )}17 {...props}18 />19 );20}2122export { Input };
What it pulls in
npm packages
