import { Directive } from '@angular/core'; import { classes } from '@spartan-ng/styles/utils'; @Directive({ selector: '[hlmCardDescription]', host: { 'data-slot': 'card-description' }, }) export class HlmCardDescription { constructor() { classes(() => 'text-muted-foreground text-sm'); } }