sass-references/angular-material/material/core/focus-indicators/structural-styles.ts

23 lines
615 B
TypeScript
Raw Permalink Normal View History

2024-12-06 10:42:08 +08:00
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';
/**
* Component used to load structural styles for focus indicators.
* @docs-private
*/
@Component({
selector: 'structural-styles',
styleUrl: 'structural-styles.css',
encapsulation: ViewEncapsulation.None,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class _StructuralStylesLoader {}