1import { ImageSource } from 'expo-image';
2
3type ComparisonImage = {
4  source: ImageSource;
5  blurhash: ImageSource;
6  thumbhash: string;
7  showGrid?: boolean;
8};
9export const comparisonImages: ComparisonImage[] = [
10  {
11    source: { uri: 'https://picsum.photos/seed/175/300/200' },
12    blurhash: {
13      blurhash: 'WgF}G?az0fs.x[jat7xFRjNHt6s.4;oe-:RkVtkCi^Nbo|xZRjWB',
14      width: 18,
15      height: 12,
16    },
17    thumbhash: '1EgOHYQImHiZZ4iCe3eWeAinolA8',
18  },
19  {
20    source: { uri: 'https://picsum.photos/seed/picsum/200/300' },
21    blurhash: { blurhash: 'LmLg9W-oNGt7~Cs.ofWC4:RkfRR*', width: 18, height: 12 },
22    thumbhash: '5xcSHQZpeI94KIenaHhoh2ufo/Y4',
23  },
24  {
25    source: { uri: 'https://picsum.photos/seed/8/200/300' },
26    blurhash: { blurhash: 'LMBDA}MxIoV@pyM{V?WUKmV?wHoz', width: 18, height: 12 },
27    thumbhash: 'EQgKHQZlh2122Hb4dm2Gh2hwkQc3',
28  },
29  {
30    source: require('../../assets/images/expo-icon.png'),
31    blurhash: { blurhash: 'L00000fQfQfQfQfQfQfQfQfQfQfQ', width: 18, height: 12 },
32    thumbhash: 'AAiCBYAmAAAAAAAAAAAAAAAAWFiHcHR5Zw',
33    showGrid: true,
34  },
35  {
36    source: { uri: 'https://picsum.photos/seed/13/200/300' },
37    blurhash: {
38      blurhash: 'W~LgtpoJRkWBWCa}?wjtayayayj[A0WXofofj[jsIUoea#j[j[ay',
39      width: 18,
40      height: 12,
41    },
42    thumbhash: 'JRkaPQh4d394V4doeHd3h3iAgAcI',
43  },
44  {
45    source: { uri: 'https://picsum.photos/seed/566/200/300' },
46    blurhash: { blurhash: 'T#H{NaxuWA?wWVoLRkV?ofE3ogoJ', width: 18, height: 12 },
47    thumbhash: 'JtcRFQR6d3+IaIZYeXWHd28h+naS',
48  },
49  {
50    source: { uri: 'https://picsum.photos/seed/666/200/300' },
51    blurhash: { blurhash: 'T15#kc9urWu6aeWB00^PTKL#ogt8', width: 18, height: 12 },
52    thumbhash: 'yPcFDQJ3d3mHB4hIiH23R5eAfxn4',
53  },
54  {
55    source: { uri: 'https://picsum.photos/seed/743/200/300' },
56    blurhash: { blurhash: 'TMK+#~xt00c[Sizn0=NKkPIFWBtk', width: 18, height: 12 },
57    thumbhash: 'HHsOPQYIpnt2WHdnl4eYh4hzgA4n',
58  },
59  {
60    source: { uri: 'https://picsum.photos/seed/466/200/300' },
61    blurhash: { blurhash: 'TAJjw{-UQ;00Iqjc^zo^bt~Bw4RQ', width: 18, height: 12 },
62    thumbhash: 'nRkWLQh4eHB3h3iId3d3iHhwiAl4',
63  },
64  {
65    source: { uri: 'https://picsum.photos/seed/523/200/300' },
66    blurhash: { blurhash: 'TYF~:d%2M{_4t6Rk%1ofWBWCt7ay', width: 18, height: 12 },
67    thumbhash: 'YecNDQJpiI+Hh3h3eIdnWFyVv3f4',
68  },
69  {
70    source: { uri: 'https://picsum.photos/id/237/200/300' },
71    blurhash: {
72      blurhash: 'WRB:KZbH%LxaoeNGIpR*IoWBs:oL~UWVt6t6WBWB%1ofs:j[t6WV',
73      width: 18,
74      height: 12,
75    },
76    thumbhash: 'TwgOFQKniXV1+JeYh3u2mLZ1b1v3',
77  },
78  {
79    source: { uri: 'https://picsum.photos/id/705/200/300' },
80    blurhash: {
81      blurhash: 'WTKcFK$e%1r=ofjs~9S2I;e:fkWC0hItIqW;WCWCD-IW%0xZj@oe',
82      width: 18,
83      height: 12,
84    },
85    thumbhash: 'YGkKHQKnh392CGdXpXVoeptu0IgF',
86  },
87  {
88    source: { uri: 'https://picsum.photos/id/857/200/300' },
89    blurhash: {
90      blurhash: 'Wg9@h@xaWBaxbGbHPEX9aef5jaj[FNW?n$jFjbj]s,j[jFe.WVWr',
91      width: 18,
92      height: 12,
93    },
94    thumbhash: 'E9cJVRB6h493R3iIeHmXZ3hwhAg3',
95  },
96];
97