mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18: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
48 lines
806 B
Plaintext
48 lines
806 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Radio Group passes prefixCls down to radio 1`] = `
|
|
<div
|
|
class="my-radio-group my-radio-group-outline"
|
|
>
|
|
<label
|
|
class="my-radio-wrapper"
|
|
>
|
|
<span
|
|
class="my-radio ant-wave-target"
|
|
>
|
|
<input
|
|
class="my-radio-input"
|
|
type="radio"
|
|
value="Apple"
|
|
/>
|
|
<span
|
|
class="my-radio-inner"
|
|
/>
|
|
</span>
|
|
<span>
|
|
Apple
|
|
</span>
|
|
</label>
|
|
<label
|
|
class="my-radio-wrapper"
|
|
style="font-size: 12px;"
|
|
>
|
|
<span
|
|
class="my-radio ant-wave-target"
|
|
>
|
|
<input
|
|
class="my-radio-input"
|
|
type="radio"
|
|
value="Orange"
|
|
/>
|
|
<span
|
|
class="my-radio-inner"
|
|
/>
|
|
</span>
|
|
<span>
|
|
Orange
|
|
</span>
|
|
</label>
|
|
</div>
|
|
`;
|