Input

Name Type Description
guvam-input element
.Input style
.type-outline modifier
[disabled] attribute

Input

# First Name Last Name Id
1 Jeff Brown 0101920
2 Jake Gray 0102921
3 Dave Black 01030922
<table class="Table">
  <thead>
    <tr> <th scope="col">#</th> <th scope="col">First Name</th> <th scope="col">Last Name</th> <th scope="col">Id</th> </tr>
  </thead>
  <tbody>
    <tr> <th scope="row">1</th> <td>Jeff</td> <td>Brown</td> <td>0101920</td> </tr>
    <tr> <th scope="row">2</th> <td>Jake</td> <td>Gray</td> <td>0102921</td> </tr>
    <tr> <th scope="row">3</th> <td>Dave</td> <td>Black</td> <td>01030922</td> </tr>
  </tbody>
</table>