export const sampleByteArrayFile = new Uint8Array([
  137,
  80,
  78,
  71,
  13,
  10,
  26,
  10, // PNG header
  0,
  0,
  0,
  13,
  73,
  72,
  68,
  82, // IHDR chunk
  0,
  0,
  0,
  1,
  0,
  0,
  0,
  1, // Width=1, Height=1
  8,
  6,
  0,
  0,
  0,
  31,
  21,
  196,
  137, // Bit depth, color type
  0,
  0,
  0,
  10,
  73,
  68,
  65,
  84, // IDAT chunk
  8,
  153,
  99,
  248,
  15,
  0,
  1,
  5, // Compressed image data
  1,
  2,
  0,
  0,
  0,
  0,
  73,
  69,
  78,
  68, // IEND chunk
  174,
  66,
  96,
  130,
]);
