cdl-textbox
v0.0.4
Published
This is custom textbox which is developed by using simple html and css. You can also modify this custom textbox as per your requirement and as per your design.
Downloads
2
Maintainers
Readme
Textbox
This is a custom html textbox which is developed using simple html and css. You can also modify this button control as per your design.
Installation instruction
npm install cdl-textbox --save
Instruction to use the package
How to use?
Please follow below instruction to implement custom textbox in your angular application.
//in module
import { TextboxModule } from 'cdl-textbox';
imports: [
TextboxModule
]
// In your component html file
<cdl-textbox
height="34"
width="300"
color="red"
placeHolder="Hello World"
>
</cdl-textbox>