12 lines
279 B
C++
12 lines
279 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "components/button/textButton.hpp"
|
|
#include "components/types/icon.hpp"
|
|
|
|
class IconButton : public TextButton {
|
|
public:
|
|
IconButton(Icon::Type icon, std::string fontFamilyCss = "materia-icons");
|
|
void setIcon(Icon::Type icon);
|
|
}; |