custom-input-library-alex
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

Custom Input Library

A reusable custom input component styled like MUI's Text Field.

Installation

npm install custom-input-library-alex

Usage

import React, { useState } from 'react';
import { CustomInput } from 'custom-input-library';

const App: React.FC = () => {
const [inputValue, setInputValue] = useState('');

const handleInputChange = (event: React.ChangeEvent<HTMLInputElement>) => {
setInputValue(event.target.value);
};

return (
<div>
<h1>Custom Input Component</h1>
<CustomInput
label="Your Label"
value={inputValue}
onChange={handleInputChange}
placeholder="Type something..."
helperText="This is a helper text"
/>
</div>
);
};

export default App;

Readme

Keywords

none

Package Sidebar

Install

npm i custom-input-library-alex

Weekly Downloads

2

Version

0.0.1

License

none

Unpacked Size

493 kB

Total Files

13

Last publish

Collaborators

  • alextrh