This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
204 B
C++
Raw Normal View History

2022-08-10 08:42:34 +08:00
#include "gui/components/components.hpp"
#include "fonts/fonts.hpp"
namespace big
{
void components::icon(const std::string_view text) {
components::custom_text(text.data(), g->window.font_icon);
}
}