1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`renders H1 1`] = `
4<Text
5  accessibilityRole="header"
6  style={
7    {
8      "fontSize": 64,
9      "fontWeight": "bold",
10      "marginVertical": 21.44,
11    }
12  }
13/>
14`;
15
16exports[`renders H2 1`] = `
17<Text
18  accessibilityRole="header"
19  style={
20    {
21      "fontSize": 48,
22      "fontWeight": "bold",
23      "marginVertical": 26.56,
24    }
25  }
26/>
27`;
28
29exports[`renders H3 1`] = `
30<Text
31  accessibilityRole="header"
32  style={
33    {
34      "fontSize": 37.44,
35      "fontWeight": "bold",
36      "marginVertical": 32,
37    }
38  }
39/>
40`;
41
42exports[`renders H4 1`] = `
43<Text
44  accessibilityRole="header"
45  style={
46    {
47      "fontSize": 32,
48      "fontWeight": "bold",
49      "marginVertical": 42.56,
50    }
51  }
52/>
53`;
54
55exports[`renders H5 1`] = `
56<Text
57  accessibilityRole="header"
58  style={
59    {
60      "fontSize": 26.56,
61      "fontWeight": "bold",
62      "marginVertical": 53.44,
63    }
64  }
65/>
66`;
67
68exports[`renders H6 1`] = `
69<Text
70  accessibilityRole="header"
71  style={
72    {
73      "fontSize": 21.44,
74      "fontWeight": "bold",
75      "marginVertical": 74.56,
76    }
77  }
78/>
79`;
80