The vertical icon tabs component has been designed to display content in different sections.
| Property | Type | Req | Description | Default |
|---|---|---|---|---|
| activeOption | StIconTab | False | Active option | |
| options | StIconTab[] | False | Option list |
| Property | Type | Description |
|---|---|---|
| changeOption | StIconTab | Event emitted when user clicks on an option |
<st-vertical-icon-tabs class="vertical-icon-tabs"
[options]="options"
[activeOption]="active"
(changeOption)="onChangeOption($event)">
</st-vertical-icon-tabs>
Icon tab (StIconTab)
export interface StIconTab {
id: string;
text: string;
iconClass: string;
}