material-web/iconbutton/icon-button.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

49 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {CSSResultOrNative} from 'lit';
import {customElement} from 'lit/decorators.js';
import {IconButton} from './internal/icon-button.js';
import {styles as sharedStyles} from './internal/shared-styles.js';
import {styles} from './internal/standard-styles.js';
declare global {
interface HTMLElementTagNameMap {
'md-icon-button': MdIconButton;
}
}
/**
* @summary Icon buttons help people take supplementary actions with a single
* tap.
*
* @description
* __Emphasis:__ Low emphasis For optional or supplementary actions with the
* least amount of prominence.
*
* __Rationale:__ The most compact and unobtrusive type of button, icon buttons
* are used for optional supplementary actions such as "Bookmark" or "Star."
*
* __Example usages:__
* - Add to Favorites
* - Print
*
* @final
* @suppress {visibility}
*/
@customElement('md-icon-button')
export class MdIconButton extends IconButton {
static override styles: CSSResultOrNative[] = [sharedStyles, styles];
protected override getRenderClasses() {
return {
...super.getRenderClasses(),
'standard': true,
};
}
}