import { Component } from '@angular/core'
import { LucideBell } from '@lucide/angular'

@Component({
	selector: 'kadi-notifications',
	templateUrl: './notifications.component.html',
	imports: [LucideBell],
})
export class NotificationsComponent {}
