mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
40 lines
791 B
Plaintext
40 lines
791 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Module Components should override the factory for a ModuleSpinner 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Spinner"
|
|
>
|
|
<div
|
|
aria-label="Loading..."
|
|
class="mx_Spinner_icon"
|
|
data-testid="spinner"
|
|
role="progressbar"
|
|
style="width: 32px; height: 32px;"
|
|
/>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`Module Components should override the factory for a TextInputField 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Field mx_Field_input"
|
|
>
|
|
<input
|
|
autocomplete="off"
|
|
id="mx_Field_1"
|
|
label="My Label"
|
|
placeholder="My Label"
|
|
type="text"
|
|
value="My Value"
|
|
/>
|
|
<label
|
|
for="mx_Field_1"
|
|
>
|
|
My Label
|
|
</label>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|