Input

The Input component is a versatile and customizable text field for capturing user input. It supports various types like text, search, and file inputs.

A simple crazxy input component

This is the default input field.

This is a search input field.

Installation

pnpm dlx shadcn@latest add https://crazxyui.in/r/crazxy-input.json

Usages

import { Input } from "@/components/ui/crazxy-ui/input";
<Input placeholder="Enter text here" />
<Input type="search" placeholder="Search..." />

Password Input

The Password Input component is a secure and user-friendly input field for capturing passwords. It includes a toggle to show or hide the password.

A simple crazxy password input component

This is the default password input field.

Installation

pnpm dlx shadcn@latest add https://crazxyui.in/r/crazxy-password-input.json

Usages

import { PasswordInput } from "@/components/ui/crazxy-ui/password-input";
<PasswordInput placeholder="Enter your password" />