Elizabeth Mitchell 27f7ea89ce feat(checkbox): refactor and simplify rendering/style logic
BREAKING CHANGE: Removed reducedTouchTarget. Instead, set the width and height on the checkbox.

PiperOrigin-RevId: 495087302
2022-12-13 11:59:05 -08:00

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);
});
});