0.5.3 includes a new Angular component - Wizards. A wizard can be created using the following markup:
<clr-wizard #wizard [(clrWizardOpen)]="open" [clrWizardSize]="'lg'">
<div class="wizard-title">Wizard Title</div>
<clr-wizard-step>Step 1</clr-wizard-step>
<clr-wizard-step>Step 2</clr-wizard-step>
<clr-wizard-step>Step 3</clr-wizard-step>
<clr-wizard-page>Content for step 1</clr-wizard-page>
<clr-wizard-page>Content for step 2</clr-wizard-page>
<clr-wizard-page>Content for step 3</clr-wizard-page>
</clr-wizard>