10 lines
337 B
C++
10 lines
337 B
C++
#include "components/button/iconButton.hpp"
|
|
|
|
IconButton::IconButton(Icon::Type icon, std::string fontFamilyCss) : TextButton(Icon::toString(icon)) {
|
|
this->get_style_context()->add_class(fontFamilyCss);
|
|
this->add_css_class("icon-button");
|
|
}
|
|
|
|
void IconButton::setIcon(Icon::Type icon) {
|
|
this->set_label(Icon::toString(icon));
|
|
} |