mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 01:48:43 +08:00
f8e040a890
* Update `@vector-im/compound-web` * Update snapshots * Update jest snapshotss * Update snapshots
33 lines
670 B
Plaintext
33 lines
670 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<ZoomButtons /> renders buttons 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_ZoomButtons"
|
|
>
|
|
<div
|
|
aria-label="Zoom in"
|
|
class="mx_AccessibleButton mx_ZoomButtons_button"
|
|
data-testid="map-zoom-in-button"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="mx_ZoomButtons_icon"
|
|
/>
|
|
</div>
|
|
<div
|
|
aria-label="Zoom out"
|
|
class="mx_AccessibleButton mx_ZoomButtons_button"
|
|
data-testid="map-zoom-out-button"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="mx_ZoomButtons_icon"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|