2022-09-26 15:29:38 +02:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
2022-11-16 16:13:59 +01:00
|
|
|
exports[`LiveBadge should render as expected with default props 1`] = `
|
2022-09-26 15:29:38 +02:00
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_LiveBadge"
|
|
|
|
>
|
2022-10-20 10:04:14 +02:00
|
|
|
<div
|
|
|
|
class="mx_Icon mx_Icon_16"
|
2022-09-26 15:29:38 +02:00
|
|
|
/>
|
|
|
|
Live
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
2022-11-16 16:13:59 +01:00
|
|
|
|
|
|
|
exports[`LiveBadge should render in grey as expected 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_LiveBadge mx_LiveBadge--grey"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="mx_Icon mx_Icon_16"
|
|
|
|
/>
|
|
|
|
Live
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|