# Accordion Group component Adds a collapsible panel to an [accordion menu](accordion.component.md). ![Accordion menu screenshot](docassets/images/accordion-menu.png) - [Basic Usage](#basic-usage) * [Properties](#properties) - [Details](#details) - [See also](#see-also) ## 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 | Title heading for the group. | | isSelected | boolean | Is this group currently selected? | | headingIcon | string | The material design icon. | | hasAccordionIcon | boolean | Should the (expanded) accordion icon be shown? Defaults to true | ## Details Place one or more accordion groups within an [Accordion component](accordion.component.md) to define a menu. ## See also - [Accordion component](accordion.component.md)