-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathelevated-button.ts
More file actions
50 lines (46 loc) · 1.41 KB
/
elevated-button.ts
File metadata and controls
50 lines (46 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {CSSResultOrNative} from 'lit';
import {customElement} from 'lit/decorators.js';
import {ElevatedButton} from './internal/elevated-button.js';
import {styles as elevatedStyles} from './internal/elevated-styles.js';
import {styles as sharedElevationStyles} from './internal/shared-elevation-styles.js';
import {styles as sharedStyles} from './internal/shared-styles.js';
declare global {
interface HTMLElementTagNameMap {
'md-elevated-button': MdElevatedButton;
}
}
/**
* @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:__ Elevated buttons are essentially filled buttons with a lighter
* background color and a shadow. To prevent shadow creep, only use them when
* absolutely necessary, such as when the button requires visual separation from
* a patterned background.
*
* __Example usages:__
* - Reply
* - View all
* - Add to cart
* - Take out of trash
*
* @final
* @suppress {visibility}
*/
@customElement('md-elevated-button')
export class MdElevatedButton extends ElevatedButton {
static override styles: CSSResultOrNative[] = [
sharedStyles,
sharedElevationStyles,
elevatedStyles,
];
}