ant-design/components/radio/__tests__/__snapshots__/group.test.tsx.snap
二货爱吃白萝卜 6e3a9080bf
fix: Checkbox & Radio not support customize wave (#44014)
* 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
2023-08-04 11:22:33 +08:00

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>
`;