import { Component, OnInit, Input } from "@angular/core"; @Component({ selector: "app-textarea", templateUrl: "./textarea.component.html", styleUrls: ["./textarea.component.css"] }) export class TextareaComponent implements OnInit { @Input() placeholder: string; @Input() maxLength: number; @Input() cols: number; @Input() rows: number; constructor() {} ngOnInit() {} }