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.

10 lines
204 B
C++
Raw Normal View History

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