material-web/chips/chip-set.ts
Elizabeth Mitchell c35bad0c64 fix: rename internal <styles>.css.js to <styles>.css
We are changing the names of these files to reduce similarity with CSS modules and avoid clashing with tooling built around that. If you're importing `*/internal/styles.css.js`, swap to `*/internal/styles.js`.

PiperOrigin-RevId: 611265000
2024-02-28 16:20:22 -08:00

29 lines
580 B
TypeScript

/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {CSSResultOrNative} from 'lit';
import {customElement} from 'lit/decorators.js';
import {ChipSet} from './internal/chip-set.js';
import {styles} from './internal/chip-set-styles.js';
declare global {
interface HTMLElementTagNameMap {
'md-chip-set': MdChipSet;
}
}
/**
* TODO(b/243982145): add docs
*
* @final
* @suppress {visibility}
*/
@customElement('md-chip-set')
export class MdChipSet extends ChipSet {
static override styles: CSSResultOrNative[] = [styles];
}