Components
Loading preview...
Displays a form input field with enhanced features like password visibility toggle, clearable functionality, and Zod validation support.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/inputimport { Input } from "@/components/ui/input";
import { Search, User, Mail } from "lucide-react";
export default function DemoOne() {
return (
<>
<div>
<Input
placeholder="Search..."
leftIcon={<Search />}
clearable
/>
</div>
</>
);
}