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

snb-react-input-type

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snb-react-input-type

React Input Component

latest
npmnpm
Version
1.0.27
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

React Text Input Plus

Input for text type inputs (ie: text, email, password, search, tel, month, week, date, time, etc)

A simple component for adding accessible inputs with animated labels.

Demo

Link to your awesome Demo

Another Link to your awesome Demo

Code

<DualInput
    type="text"
    name="addTask"
    role="textbox"
    label="Add Task"
    altType="search"
    altName="searchTerm"
    altRole="search"
    altLabel="Search Tasks"
    leftIcon={<BsPencil />}
    leftAltIcon={<BsSearch />}
    rightIcon={<RiAddLine />}
    onChange={e => console.log(e.target.value)}
  />
  <Input
    type="text"
    name="username"
    role="textbox"
    label="Name"
    icon={<FaUser />}
    onChange={e => console.log(e.target.value)}
  />
  <Input
    type="email"
    name="email"
    label="Email"
    icon={<MdEmail />}
    onChange={e => console.log(e.target.value)}
  />
  <Input
    type="password"
    name="password"
    label="Password"
    icon={<RiLockPasswordFill />}
    onChange={e => console.log(e.target.value)}
  />

Download & Installation

$ npm i snb-react-input-type 

Contributing

Feel free to contribute.

Authors or Acknowledgments

  • S.Barakat

License

This project is licensed under the MIT License

FAQs

Package last updated on 04 May 2021

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