import { Directive, TemplateRef } from "@angular/core";
/**
* Used to identify template based tab labels (allows complex labels instead of just plaintext)
*
* @example
* ```
*
*
* Search
*
*
* Tab Content
*
* ```
*/
@Directive({
selector: "[bitTabLabel]",
standalone: true,
})
export class TabLabelDirective {
constructor(public templateRef: TemplateRef) {}
}