mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-28 19:38:48 +08:00
27 lines
695 B
Plaintext
27 lines
695 B
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`<LeftPanelLiveShareWarning /> when user has live beacons renders correctly when minimized 1`] = `
|
||
|
<LeftPanelLiveShareWarning
|
||
|
isMinimized={true}
|
||
|
>
|
||
|
<div
|
||
|
className="mx_LeftPanelLiveShareWarning mx_LeftPanelLiveShareWarning__minimized"
|
||
|
title="You are sharing your live location"
|
||
|
>
|
||
|
<div
|
||
|
height={10}
|
||
|
/>
|
||
|
</div>
|
||
|
</LeftPanelLiveShareWarning>
|
||
|
`;
|
||
|
|
||
|
exports[`<LeftPanelLiveShareWarning /> when user has live beacons renders correctly when not minimized 1`] = `
|
||
|
<LeftPanelLiveShareWarning>
|
||
|
<div
|
||
|
className="mx_LeftPanelLiveShareWarning"
|
||
|
>
|
||
|
You are sharing your live location
|
||
|
</div>
|
||
|
</LeftPanelLiveShareWarning>
|
||
|
`;
|