import { Directive, TemplateRef, Input } from '@angular/core'; @Directive({ selector: '[farrisSectionContent]', }) export class FarrisSectionContentDirective { @Input() contentCls: string; constructor( public templateRef: TemplateRef ) { } }