mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
6e3a9080bf
* chore: fix checkbox * chore: checkbox support disabled * chore: radio support wave * test: update test case * chore: fix lint * test: update snapshot * test: update snapshot * test: fix test case * test: update test case
20 lines
392 B
Plaintext
20 lines
392 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Checkbox rtl render component should be rendered correctly in RTL direction 1`] = `
|
|
<label
|
|
class="ant-checkbox-wrapper ant-checkbox-rtl"
|
|
>
|
|
<span
|
|
class="ant-checkbox ant-wave-target"
|
|
>
|
|
<input
|
|
class="ant-checkbox-input"
|
|
type="checkbox"
|
|
/>
|
|
<span
|
|
class="ant-checkbox-inner"
|
|
/>
|
|
</span>
|
|
</label>
|
|
`;
|