mirror of
https://github.com/material-components/material-web.git
synced 2024-11-09 16:19:39 +03:00
74bda6e11c
PiperOrigin-RevId: 495160072
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
/**
|
||
* @license
|
||
* Copyright 2021 Google LLC
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*/
|
||
|
||
import {customElement} from 'lit/decorators.js';
|
||
|
||
import {OutlinedButton} from './lib/outlined-button.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-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}
|
||
*/
|
||
@customElement('md-outlined-button')
|
||
export class MdOutlinedButton extends OutlinedButton {
|
||
static override styles = [sharedStyles, outlinedStyles];
|
||
}
|