Saaj UI

Text Input

A text input that allows the user to enter text.

Preview

Installation

npx saaj add TextInput

Usage

MyTextInput.tsx
import { TextInput } from '@/components/ui/TextInput';
 
export function MyTextInput() {
  return (
    <TextInput placeholder="Enter your name" />
  );
}

On this page