Files
bar/include/widgets/todo.hpp
2025-12-20 21:05:57 +01:00

8 lines
136 B
C++

#pragma once
#include "components/popover.hpp"
class Todo : public Popover {
public:
Todo(std::string icon, std::string title);
};