mirror of https://github.com/jetkvm/kvm.git
21 lines
412 B
C
21 lines
412 B
C
#ifndef EEZ_LVGL_UI_FONTS_H
|
|
#define EEZ_LVGL_UI_FONTS_H
|
|
|
|
#include <lvgl.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const lv_font_t ui_font_font_bold30;
|
|
extern const lv_font_t ui_font_font_book16;
|
|
extern const lv_font_t ui_font_font_book18;
|
|
extern const lv_font_t ui_font_font_book20;
|
|
extern const lv_font_t ui_font_font_book24;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*EEZ_LVGL_UI_FONTS_H*/ |