Notes on NG-Zorro for Angular

.

Published: 9/9/2025

Run the getting started process to create a new project Angular project and to install NG-ZORRO.

Add the NG-ZORRO stylesheets to angular.json, as per the theme customisation documentation.

ng g c ui/button

HTML

<button nz-button nzType="primary">Primary Button</button>

TS

import { NzButtonModule } from 'ng-zorro-antd/button';

...

imports: [NzButtonModule],
standalone: true,