mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 03:33:30 +00:00
13 lines
376 B
TypeScript
13 lines
376 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { A11yCellDirective } from "../a11y/a11y-cell.directive";
|
|
|
|
@Component({
|
|
selector: "bit-item-action",
|
|
standalone: true,
|
|
imports: [],
|
|
template: `<ng-content></ng-content>`,
|
|
providers: [{ provide: A11yCellDirective, useExisting: ItemActionComponent }],
|
|
})
|
|
export class ItemActionComponent extends A11yCellDirective {}
|