# Accordion Component Creates an accordion menu, optionally with a custom header and icon. - [Basic Usage](#basic-usage) * [Properties](#properties) ## Basic Usage ```html ``` ```ts @Component({ selector: 'my-component' }) export class MyComponent implements OnInit { titleHeading: string; constructor() { this.titleHeading = 'My Group'; } } ``` ### Properties | Name | Type | Description | | --- | --- | --- | | heading | string | The header title. | | isSelected | boolean | Define if the accordion group is selected or not. | | headingIcon | string | The material design icon. | | hasAccordionIcon | boolean | Define if the accordion (expand) icon needs to be shown or not, the default value is true |