Components
Input

Input

Add Input

npx sidcn add input

Reset Cache

yarn start --clear // yarn
 
npm start -- --reset-cache // npm

Import Input

import { Input } from '/components/sidcn/ui/input';

How to use

<Input type="Password" placeholder="Password" />

Use with className

<View className="w-full">
    <Label>Hi</Label>
    <Input type="Password" placeholder="Password" className="p-4" />
</View>