LabelBadge.test.tsx.snap

 1// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
 2
 3exports[`LabelBadge/AllColors matches snapshot 1`] = `
 4<div>
 5  <div
 6    class="flex flex-wrap gap-2"
 7  >
 8    <span
 9      class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
10      style="background-color: rgb(252, 41, 41); color: rgba(255, 255, 255, 0.9);"
11    >
12      bug
13    </span>
14    <span
15      class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
16      style="background-color: rgb(163, 230, 53); color: rgba(0, 0, 0, 0.75);"
17    >
18      enhancement
19    </span>
20    <span
21      class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
22      style="background-color: rgb(30, 80, 160); color: rgba(255, 255, 255, 0.9);"
23    >
24      documentation
25    </span>
26    <span
27      class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
28      style="background-color: rgb(0, 150, 136); color: rgba(255, 255, 255, 0.9);"
29    >
30      help wanted
31    </span>
32    <span
33      class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
34      style="background-color: rgb(200, 200, 200); color: rgba(0, 0, 0, 0.75);"
35    >
36      wontfix
37    </span>
38    <span
39      class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
40      style="background-color: rgb(255, 152, 0); color: rgba(0, 0, 0, 0.75);"
41    >
42      priority
43    </span>
44  </div>
45</div>
46`;
47
48exports[`LabelBadge/Clickable matches snapshot 1`] = `
49<div>
50  <span
51    class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
52    style="background-color: rgb(0, 150, 136); color: rgba(255, 255, 255, 0.9);"
53  >
54    help wanted
55  </span>
56</div>
57`;
58
59exports[`LabelBadge/DarkBackground matches snapshot 1`] = `
60<div>
61  <span
62    class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
63    style="background-color: rgb(30, 80, 160); color: rgba(255, 255, 255, 0.9);"
64  >
65    documentation
66  </span>
67</div>
68`;
69
70exports[`LabelBadge/Default matches snapshot 1`] = `
71<div>
72  <span
73    class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
74    style="background-color: rgb(252, 41, 41); color: rgba(255, 255, 255, 0.9);"
75  >
76    bug
77  </span>
78</div>
79`;
80
81exports[`LabelBadge/LightBackground matches snapshot 1`] = `
82<div>
83  <span
84    class="inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium "
85    style="background-color: rgb(163, 230, 53); color: rgba(0, 0, 0, 0.75);"
86  >
87    enhancement
88  </span>
89</div>
90`;