Skip to content

Commit

Permalink
added name, isRequired
Browse files Browse the repository at this point in the history
  • Loading branch information
pragati-atharva committed Sep 23, 2022
1 parent 41798b5 commit cb4f4ed
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ import { SVGs } from '../../constants/svgs';
})
export class InputFieldComponent implements OnInit {
@Input() error = false;
@Input() class : any;
@Input() icon : string = SVGs.info;
@Input() name!: string;
@Input() class: any;
@Input() isRequired!: boolean;
@Input() icon: string = SVGs.info;
public svgs;

constructor() {
this.svgs = SVGs;
}
Expand Down

0 comments on commit cb4f4ed

Please sign in to comment.