import type { ClassValue } from 'clsx'; import { Pipe, PipeTransform } from '@angular/core'; import { cn } from './utils'; @Pipe({ name: 'cn', standalone: true, }) export class CnPipe implements PipeTransform { transform(inputs: ClassValue[]): string { return cn(inputs); } }