material-web/segmentedbuttonset/outlined-segmented-button-set.ts
Elizabeth Mitchell e12a7f33da chore: remove internal SSR annotations
PiperOrigin-RevId: 526679441
2023-04-24 10:12:10 -07:00

29 lines
848 B
TypeScript

/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators.js';
import {OutlinedSegmentedButtonSet} from './lib/outlined-segmented-button-set.js';
import {styles as outlinedStyles} from './lib/outlined-styles.css.js';
import {styles as sharedStyles} from './lib/shared-styles.css.js';
declare global {
interface HTMLElementTagNameMap {
'md-outlined-segmented-button-set': MdOutlinedSegmentedButtonSet;
}
}
/**
* MdOutlinedSegmentedButtonSet is the custom element for the Material
* Design outlined segmented button set component.
* @final
* @suppress {visibility}
*/
@customElement('md-outlined-segmented-button-set')
export class MdOutlinedSegmentedButtonSet extends OutlinedSegmentedButtonSet {
static override styles = [sharedStyles, outlinedStyles];
}