Last active
March 25, 2020 05:35
-
-
Save santoshyadavdev/e3c99dbb0bd1899ed5bbdb870ccf142b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="example-container"> | |
<mat-form-field appearance="fill"> | |
<mat-label>Input</mat-label> | |
<input matInput> | |
</mat-form-field> | |
<br> | |
<mat-form-field appearance="fill"> | |
<mat-label>Select</mat-label> | |
<mat-select> | |
<mat-option value="option">Option</mat-option> | |
</mat-select> | |
</mat-form-field> | |
<br> | |
<mat-form-field appearance="fill"> | |
<mat-label>Textarea</mat-label> | |
<textarea matInput></textarea> | |
</mat-form-field> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment