Text FieldDisplays a form text field or a component that looks like a text field.
Install the component from your command line.
npm install @raystack/apsara
Diffrent size variants
loading...
Import all parts and piece them together.
import { TextField } from '@raystack/apsara'

<TextField
  type="email"
  size="small"
  placeholder="Email"
  autoComplete="off"
/>
<TextField
  type="password"
  size="small"
  placeholder="Password"
  autoComplete="off"
/>