1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`renders B 1`] = `
4<Text
5  style={
6    {
7      "fontWeight": "bold",
8    }
9  }
10>
11  demo
12</Text>
13`;
14
15exports[`renders BR 1`] = `
16<Text
17  style={
18    {
19      "height": 16,
20      "width": 0,
21    }
22  }
23/>
24`;
25
26exports[`renders BlockQuote 1`] = `
27<View
28  style={
29    {
30      "marginVertical": 32,
31    }
32  }
33/>
34`;
35
36exports[`renders Code 1`] = `
37<Text
38  style={
39    {
40      "fontFamily": "monospace",
41      "fontWeight": "500",
42    }
43  }
44/>
45`;
46
47exports[`renders Del 1`] = `
48<Text
49  style={
50    {
51      "textDecorationLine": "line-through",
52      "textDecorationStyle": "solid",
53    }
54  }
55>
56  demo
57</Text>
58`;
59
60exports[`renders EM 1`] = `
61<Text
62  style={
63    {
64      "fontStyle": "italic",
65    }
66  }
67>
68  demo
69</Text>
70`;
71
72exports[`renders I 1`] = `
73<Text
74  style={
75    {
76      "fontStyle": "italic",
77    }
78  }
79>
80  demo
81</Text>
82`;
83
84exports[`renders Mark 1`] = `
85<Text
86  style={
87    {
88      "backgroundColor": "yellow",
89      "color": "black",
90    }
91  }
92/>
93`;
94
95exports[`renders P 1`] = `
96<Text
97  style={
98    {
99      "marginVertical": 32,
100    }
101  }
102>
103  demo
104</Text>
105`;
106
107exports[`renders Pre 1`] = `
108<Text
109  style={
110    {
111      "fontFamily": "monospace",
112      "fontWeight": "500",
113      "marginVertical": 32,
114    }
115  }
116>
117
118    body {
119      color: red;
120    }
121
122</Text>
123`;
124
125exports[`renders Q 1`] = `
126<Text
127  style={
128    {
129      "fontStyle": "italic",
130    }
131  }
132>
133  "
134  demo
135  "
136</Text>
137`;
138
139exports[`renders S 1`] = `
140<Text
141  style={
142    {
143      "textDecorationLine": "line-through",
144      "textDecorationStyle": "solid",
145    }
146  }
147>
148  demo
149</Text>
150`;
151
152exports[`renders Span 1`] = `
153<Text>
154  demo
155</Text>
156`;
157
158exports[`renders Strong 1`] = `
159<Text
160  style={
161    {
162      "fontWeight": "bold",
163    }
164  }
165>
166  demo
167</Text>
168`;
169
170exports[`renders Time 1`] = `
171<Text>
172  May 15
173</Text>
174`;
175