mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
24 lines
441 B
C
24 lines
441 B
C
/* XPM */
|
|
const char *pinshape_active_low_input_xpm[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"15 15 2 1",
|
|
". c Black",
|
|
" c #FFFFFF",
|
|
/* pixels */
|
|
" ",
|
|
" ",
|
|
" . ",
|
|
" . . ",
|
|
" . ... ",
|
|
" . .. . ",
|
|
" .. . ",
|
|
" .......... ",
|
|
" . ",
|
|
" . ",
|
|
" . ",
|
|
" . ",
|
|
" . ",
|
|
" ",
|
|
" "
|
|
};
|