You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
997 B
53 lines
997 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`CheckboxGroup passes prefixCls down to checkbox 1`] = `
|
|
<div
|
|
class="my-checkbox-group"
|
|
>
|
|
<label
|
|
class="my-checkbox-wrapper my-checkbox-group-item"
|
|
>
|
|
<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-wrapper my-checkbox-group-item"
|
|
style="font-size: 12px;"
|
|
>
|
|
<span
|
|
class="my-checkbox"
|
|
>
|
|
<input
|
|
class="my-checkbox-input"
|
|
type="checkbox"
|
|
value="Orange"
|
|
/>
|
|
<span
|
|
class="my-checkbox-inner"
|
|
/>
|
|
</span>
|
|
<span>
|
|
Orange
|
|
</span>
|
|
</label>
|
|
</div>
|
|
`;
|
|
|
|
exports[`CheckboxGroup rtl render component should be rendered correctly in RTL direction 1`] = `
|
|
<div
|
|
class="ant-checkbox-group ant-checkbox-group-rtl"
|
|
/>
|
|
`;
|
|
|