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.
 
 

47 lines
774 B

// 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"
>
<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"
>
<input
class="my-radio-input"
type="radio"
value="Orange"
/>
<span
class="my-radio-inner"
/>
</span>
<span>
Orange
</span>
</label>
</div>
`;