/** @file * @author Edouard DUPIN * @copyright 2018, Edouard DUPIN, all right reserved * @license PROPRIETARY (see license file) */ import { Component, Input } from '@angular/core'; @Component({ selector: 'app-error-message-state', templateUrl: 'error-message-state.html', styleUrls: ['error-message-state.less'], }) export class ErrorMessageStateComponent { /// Value of the password @Input() value: boolean|string = false; }