1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

[CL-169] add bit-section component (#8062)

This commit is contained in:
Will Martin
2024-02-23 10:51:17 -05:00
committed by GitHub
parent fa43d8c55e
commit 43d1174a06
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { CommonModule } from "@angular/common";
import { Component } from "@angular/core";
@Component({
selector: "bit-section",
standalone: true,
imports: [CommonModule],
template: `
<section class="tw-mb-12">
<ng-content></ng-content>
</section>
`,
})
export class SectionComponent {}