New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@blaze-react/text-area

Package Overview
Dependencies
Maintainers
7
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blaze-react/text-area

The HTML textarea element represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.

npmnpm
Version
0.8.0-alpha.114
Version published
Weekly downloads
297
-10%
Maintainers
7
Weekly downloads
 
Created
Source

Description

The HTML textarea element represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example a comment on a review or feedback form.

Usage

  • Simple
<Textarea label="Simple textarea" placeholder="Content..." onChange={({ event, value }) => {}} required />
  • Limited
<Textarea
  label="Textarea with limit"
  placeholder="Content..."
  onChange={({ event, value }) => {}}
  value="lorem ipsum"
  limit={40}
/>

API

Textarea can receive a number of props as follow:
NAMETYPEDEFAULT
labelStringempty
valueStringempty
requiredBooleanfalse
limitNumber0
onChangeFunction() => {}

FAQs

Package last updated on 08 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts