2024-07-23 13:40:30 +02:00

9 lines
184 B
C++

#include "gui/components/components.hpp"
namespace big
{
void components::small_text(const std::string_view text)
{
components::custom_text(text.data(), g.window.font_small);
}
}