mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
BREAKING CHANGE: Removed reducedTouchTarget. Instead, set the width and height on the checkbox. PiperOrigin-RevId: 495087302
18 lines
340 B
TypeScript
18 lines
340 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// import 'jasmine'; (google3-only)
|
|
|
|
import {createTokenTests} from '../testing/tokens.js';
|
|
|
|
import {MdCheckbox} from './checkbox.js';
|
|
|
|
describe('<md-checkbox>', () => {
|
|
describe('.styles', () => {
|
|
createTokenTests(MdCheckbox.styles);
|
|
});
|
|
});
|