icons.h 377 B

1234567891011
  1. #pragma once
  2. #include <inttypes.h>
  3. #define ICON_ARROW_LEFT_8x9_WIDTH 8
  4. #define ICON_ARROW_LEFT_8x9_HEIGHT 9
  5. static const uint8_t ICON_ARROW_LEFT_8x9[] = { 0x80,0xe0,0xf8,0xfe,0xff,0xfe,0xf8,0xe0,0x80 };
  6. #define ICON_ARROW_RIGHT_8x9_WIDTH 8
  7. #define ICON_ARROW_RIGHT_8x9_HEIGHT 9
  8. static const uint8_t ICON_ARROW_RIGHT_8x9[] = { 0x01,0x07,0x1f,0x7f,0xff,0x7f,0x1f,0x07,0x01 };