Skip to content

Instantly share code, notes, and snippets.

@eliraneliassy
Created June 29, 2019 19:15
Show Gist options
  • Save eliraneliassy/bce7c53e80bc8519c8c3c5ae156b5836 to your computer and use it in GitHub Desktop.
Save eliraneliassy/bce7c53e80bc8519c8c3c5ae156b5836 to your computer and use it in GitHub Desktop.
export class FirstCustomInputComponent {
@Input() type = 'text';
@Input() isRequired: boolean = false;
@Input() pattern: string = null;
@Input() label: string = null;
@Input() placeholder: string;
@Input() errorMsg: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment