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