aboutsummaryrefslogtreecommitdiff
path: root/src/components/preview/__snapshots__/badge.test.tsx.snap
blob: 9000a91ba77b2e70c0ef32e6924757e12b467ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Badge renders 1`] = `
<div
  class="badge-wrapper"
  style="height: 25px; background-color: rgb(85, 85, 85); display: flex; margin: 0px 7px;"
>
  <p
    class="badge-label"
    style="color: rgb(255, 255, 255); font-family: Jost; font-size: 11px; height: 100%; letter-spacing: 1px; margin: 0px; text-transform: uppercase; padding: 0px 12px 0px 10px; display: flex; align-items: center;"
  >
    name1
  </p>
  <p
    class="badge-value"
    style="background-color: black; color: rgb(255, 255, 255); font-family: Jost; font-size: 11px; height: 100%; letter-spacing: 1px; margin: 0px -4px 0px -4px; padding: 0px 8px; display: flex; align-items: center;"
  >
    value1
  </p>
</div>
`;