No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.


  

@swisspost/design-system-components-angular

npm version

The Design System Angular Components, ready for use in your Angular project.

npm install @swisspost/design-system-components-angular

Importing the components to your project.

// app.module.ts import { NgModule } from '@angular/core'; import { PostComponentsModule } from '@swisspost/design-system-components-angular'; @NgModule({ ... imports: [PostComponentsModule], ... }) export class AppModule {}

Usage within your template.

<!-- app.component.html --> <post-icon *ngIf="condition" [attr.name]="iconName"></post-icon>