* Switch to Compound icons in ServerPicker Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to Compound ask-to-join icon Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to Compound invite icon Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to Compound pin icon Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to Compound Spinner Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix ServerPicker icon rendering Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Replace search-inset.svg with Compound Message icon Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
|
|
exports[`Module Components should override the factory for a ModuleSpinner 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_Spinner"
|
|
>
|
|
<svg
|
|
aria-label="Loading…"
|
|
class="_icon_11k6c_18"
|
|
data-testid="spinner"
|
|
fill="currentColor"
|
|
height="1em"
|
|
role="progressbar"
|
|
style="width: 32px; height: 32px;"
|
|
viewBox="0 0 24 24"
|
|
width="1em"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clip-rule="evenodd"
|
|
d="M12 4.031a8 8 0 1 0 8 8 1 1 0 0 1 2 0c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10a1 1 0 1 1 0 2"
|
|
fill-rule="evenodd"
|
|
/>
|
|
</svg>
|
|
</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>
|
|
`;
|