26 lines
446 B
C
26 lines
446 B
C
|
/*
|
||
|
* Copyright (C) 2018 Koen Zandberg <koen@bergzand.net>
|
||
|
*
|
||
|
* This file is subject to the terms and conditions of the GNU Lesser
|
||
|
* General Public License v2.1. See the file LICENSE in the top level
|
||
|
* directory for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef _APP_FONTS_GOTHAM_BOLD_80_H
|
||
|
#define _APP_FONTS_GOTHAM_BOLD_80_H
|
||
|
|
||
|
#include "lvgl/lvgl.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
extern lv_font_t gotham_bold_80;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|
||
|
|