Search code examples
htmlcsstypescriptangular7ng-zorro-antd

How to add a close button to NgZorro Collapse header component?


I am working on NgZorro Collapse component. I have to add a close button on the top-right of the component. How to add it?


Solution

  • I got the answer:

      <nz-collapse>
          <nz-collapse-panel [nzExtra]="extraTpl">
          </nz-collapse-panel>
      </nz-collapse>
      <ng-template #extraTpl>
         <i nz-icon nzType="close" nzTheme="outline"></i>
      </ng-template>