bitwarden-estensione-browser/libs/components/src/table/table.component.html

13 lines
359 B
HTML

<table [ngClass]="tableClass">
<thead
class="tw-border-0 tw-border-b-2 tw-border-solid tw-border-secondary-300 tw-font-bold tw-text-muted"
>
<ng-content select="[header]"></ng-content>
</thead>
<tbody>
<ng-container
*ngTemplateOutlet="templateVariable.template; context: { $implicit: rows }"
></ng-container>
</tbody>
</table>