18 lines
514 B
HTML
18 lines
514 B
HTML
<span class="mat-content" [class.mat-content-hide-toggle]="!_showToggle()">
|
|
<ng-content select="mat-panel-title"></ng-content>
|
|
<ng-content select="mat-panel-description"></ng-content>
|
|
<ng-content></ng-content>
|
|
</span>
|
|
|
|
@if (_showToggle()) {
|
|
<span class="mat-expansion-indicator">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 -960 960 960"
|
|
aria-hidden="true"
|
|
focusable="false">
|
|
<path d="M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z"/>
|
|
</svg>
|
|
</span>
|
|
}
|