Input

Inputs let users enter and edit text.

import { Input } from '../components'

<Input
    placeholder={'Place your Text'}
/>

Input can be dark on the bright screen.

import { Input } from '../components'

<Input
    dark
    placeholder={'Place your Text'}
/>

Input can be disabled:

import { Input } from '../components/'

<Input
    disabled
    placeholder={'Place your Text'}
/>

You can make input bordered:

import { Input } from '../components/'

<Input
    type="bordered"
    placeholder={'Place your Text'}
/>

You can make the input with a caption:

import { Input } from '../components/'

<Input
    caption="Simple caption text"
    placeholder={'Place your Text'}
/>

You can make the input with a label:

import { Input } from '../components/'

<Input
    label="Simple label text"
    placeholder={'Place your Text'}
/>

Properties

Last updated