7 lines
299 B
C
7 lines
299 B
C
#define dblRightArrow_width 16
|
|
#define dblRightArrow_height 15
|
|
static unsigned char dblRightArrow_bits[] = {
|
|
0x01, 0x01, 0x03, 0x03, 0x07, 0x07, 0x0f, 0x0f, 0x1f, 0x1f, 0x3f, 0x3f,
|
|
0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0x3f, 0x3f, 0x1f, 0x1f, 0x0f, 0x0f,
|
|
0x07, 0x07, 0x03, 0x03, 0x01, 0x01};
|