mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
16 lines
391 B
C++
16 lines
391 B
C++
#include "sharing/linux/tui/components/laptop_icon.h"
|
|
|
|
namespace nearby::sharing::linux_tui {
|
|
using namespace ftxui;
|
|
|
|
Element Laptop() {
|
|
return vbox({
|
|
text(" +========+ ") | center,
|
|
text(" | | ") | center,
|
|
text(" |________| ") | center,
|
|
text(" /--------\\ ") | center,
|
|
text("/__________\\") | center,
|
|
});
|
|
}
|
|
} // namespace nearby::sharing::linux_tui
|