mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 18:08:14 +08:00
25 lines
546 B
Plaintext
25 lines
546 B
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`<VideoRoomChatButton /> renders button when room is a video room 1`] = `
|
||
|
<button
|
||
|
aria-label="Chat"
|
||
|
class="_icon-button_1qjaf_17"
|
||
|
data-state="closed"
|
||
|
style="--cpd-icon-button-size: 32px;"
|
||
|
>
|
||
|
<div />
|
||
|
</button>
|
||
|
`;
|
||
|
|
||
|
exports[`<VideoRoomChatButton /> renders button with an unread marker when room is unread 1`] = `
|
||
|
<button
|
||
|
aria-label="Chat"
|
||
|
class="_icon-button_1qjaf_17"
|
||
|
data-indicator="default"
|
||
|
data-state="closed"
|
||
|
style="--cpd-icon-button-size: 32px;"
|
||
|
>
|
||
|
<div />
|
||
|
</button>
|
||
|
`;
|