ChatiumFor developersPlaygroundPricing
Sign in

Input

<Input
  value={'Agreement between the owner of the computer program'}
  placeholder={'User Agreement'}
/>

interface InputProps {
  value?: string
  placeholder?: string
  readonly?: boolean
  disabled?: boolean
  size?: string
}