{"version":3,"file":"chunk-m1hp2u8d.js","sources":["packages/sports/web/app/src/common/heading.component.ts","packages/sports/web/app/src/common/heading.html"],"sourcesContent":["import { ChangeDetectionStrategy, Component, HostBinding, Input } from '@angular/core';\n\nimport { TextAutoScrollDirective } from '@frontend/sports/common/ui/text-auto-scroll';\n\n@Component({\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'ms-heading',\n templateUrl: 'heading.html',\n standalone: true,\n imports: [TextAutoScrollDirective],\n})\nexport class HeadingComponent {\n @Input() title?: string;\n @HostBinding('class') className = 'heading-bg';\n}\n","