UNPKG

@material/web

Version:
35 lines (34 loc) 921 B
/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { IconButton } from './internal/icon-button.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 */ export declare class MdIconButton extends IconButton { static styles: import("lit").CSSResult[]; protected getRenderClasses(): { standard: boolean; 'flip-icon': boolean; selected: boolean; }; }