Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Empty defaults. (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-H11 committed Mar 23, 2022
1 parent 91cbbb2 commit a9a9d86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/components/inputs/text-input/text-input.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export type Flavor = 'primary' | 'success' | 'warning' | 'danger' | 'info';
export class TextInputComponent {

@Input() public disabled = false;
@Input() placeholder: string = "Placeholder";
@Input() hintText: string = "This is a small hint.";
@Input() label: string = "Label";
@Input() placeholder: string = "";
@Input() hintText: string = "";
@Input() label: string = "";
@Input() hintColored: boolean = false;
@Input() public flavor: Flavor = 'primary';

Expand Down

0 comments on commit a9a9d86

Please sign in to comment.