Liz Mitchell c527e93b0d feat(switch): update to new Material Design spec
PiperOrigin-RevId: 389256181
2021-08-06 14:07:22 -07:00

25 lines
347 B
SCSS

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
@use '@material/switch/switch' as mdc-switch;
@mixin static-styles() {
@include mdc-switch.static-styles-without-ripple;
:host {
display: inline-flex;
outline: none;
}
input {
@include input;
}
}
@mixin input() {
display: none;
}