99.10.0 • Published 4 years ago

@temporg/ui-text-area v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-text-area

npm  build-status  MIT License  Code of Conduct

A styled HTML textarea Component.

Components

The ui-text-area package contains the following:

Installation

yarn add @temporg/ui-text-area

Usage

import React from 'react'
import { TextArea } from '@temporg/ui-text-area'

const MyTextArea = () => {
  return (
    <TextArea
      label="Course Description"
      maxHeight="10rem"
    />
  )
}