mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
16 lines
389 B
C++
16 lines
389 B
C++
#include "sharing/linux/tui/components/tablet_icon.h"
|
|
|
|
namespace nearby::sharing::linux_tui {
|
|
using namespace ftxui;
|
|
|
|
Element Tablet() {
|
|
return vbox({
|
|
text("____________") | center,
|
|
text("| |") | center,
|
|
text("| |") | center,
|
|
text("|__________|") | center,
|
|
text(" ") | center,
|
|
});
|
|
}
|
|
} // namespace nearby::sharing::linux_tui
|