0.0.4 • Published 5 years ago

cdl-textbox v0.0.4

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

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>