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.
2022-08-10 02:42:34 +02:00

9 lines
204 B
C++

#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);
}
}