UNPKG

@material/web

Version:
38 lines (37 loc) 1.06 kB
/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { CSSResultOrNative } from 'lit'; import { OutlinedButton } from './internal/outlined-button.js'; declare global { interface HTMLElementTagNameMap { 'md-outlined-button': MdOutlinedButton; } } /** * @summary Buttons help people take action, such as sending an email, sharing a * document, or liking a comment. * * @description * __Emphasis:__ Medium emphasis – For important actions that don’t distract * from other onscreen elements. * * __Rationale:__ Use an outlined button for actions that need attention but * aren’t the primary action, such as “See all” or “Add to cart.” This is also * the button to use for giving someone the opportunity to change their mind or * escape a flow. * * __Example usages:__ * - Reply * - View all * - Add to cart * - Take out of trash * * @final * @suppress {visibility} */ export declare class MdOutlinedButton extends OutlinedButton { static styles: CSSResultOrNative[]; }