import { Component } from '@angular/core';
import { ButtonModule } from 'primeng/button';
import { MenuModule } from 'primeng/menu';
@Component({
standalone: true,
selector: 'app-notifications-widget',
imports: [ButtonModule, MenuModule],
template: `
TODAY
-
Richard Jones
has purchased a blue t-shirt for $79.00
-
Your request for withdrawal of $2500.00 has been initiated.
YESTERDAY
-
Keyser Wick
has purchased a black jacket for $59.00
-
Jane Davis
has posted a new questions about your product.
LAST WEEK
-
Your revenue has increased by %25.
-
12 users have added your products to their wishlist.
`
})
export class NotificationsWidget {
items = [
{ label: 'Add New', icon: 'pi pi-fw pi-plus' },
{ label: 'Remove', icon: 'pi pi-fw pi-trash' }
];
}