This component no longer exists. It was in Wednesday UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 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 Invalid Demo
wednesday-ui/input-invalid-demoRemovedComponent
A demo of the input invalid
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/input-invalid-demo.jsonSource
1import { Input } from "@/components/ui/input";23export const inputVariants = [4 "default",5 "faded",6 "bordered",7 "underline",8] as const;910export const InputInvalidExample = () => {11 return (12 <div className="flex flex-col gap-4 w-full max-w-72">13 {inputVariants.map((variant) => (14 <Input15 key={variant}16 variant={variant}17 aria-invalid18 placeholder="Invalid"19 />20 ))}21 </div>22 );23};
What it pulls in
Other registry items
