For general installation and configuration take a look at the ngx-core-components package.
// app.component.ts
import { DBNotification } from '@db-ux/ngx-core-components';
@Component({
// ...
standalone: true,
imports: [..., DBNotification],
// ...
})
<!-- app.component.html -->
<db-notification headline="Headline">Notification</db-notification>