material-components_materia.../labs/segmentedbutton/outlined-segmented-button.ts
Andrew Jakubowicz 6ec3f06429 fix!: rename "lib" directory to "internal"
BREAKING CHANGE: Rename `@material/web/<component>/lib` to `@material/web/<component>/internal`. Prefer not using internal files.

PiperOrigin-RevId: 550633216
2023-07-24 12:02:59 -07:00

29 lines
832 B
TypeScript

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