mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-12 11:55:23 +08:00
7ee2eca848
Close #9950
47 lines
806 B
Plaintext
47 lines
806 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`CheckboxGroup passes prefixCls down to checkbox 1`] = `
|
|
<div
|
|
class="my-checkbox-group"
|
|
>
|
|
<label
|
|
class="my-checkbox-group-item my-checkbox-wrapper"
|
|
>
|
|
<span
|
|
class="my-checkbox"
|
|
>
|
|
<input
|
|
class="my-checkbox-input"
|
|
type="checkbox"
|
|
value="Apple"
|
|
/>
|
|
<span
|
|
class="my-checkbox-inner"
|
|
/>
|
|
</span>
|
|
<span>
|
|
Apple
|
|
</span>
|
|
</label>
|
|
<label
|
|
class="my-checkbox-group-item my-checkbox-wrapper"
|
|
>
|
|
<span
|
|
class="my-checkbox"
|
|
>
|
|
<input
|
|
class="my-checkbox-input"
|
|
type="checkbox"
|
|
value="Orange"
|
|
/>
|
|
<span
|
|
class="my-checkbox-inner"
|
|
/>
|
|
</span>
|
|
<span>
|
|
Orange
|
|
</span>
|
|
</label>
|
|
</div>
|
|
`;
|