mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 07:36:10 -04:00
16 lines
357 B
C++
16 lines
357 B
C++
#include "sharing/linux/tui/components/phone_icon.h"
|
|
|
|
namespace nearby::sharing::linux_tui {
|
|
using namespace ftxui;
|
|
|
|
Element Phone() {
|
|
return vbox({
|
|
text("______") | center,
|
|
text("| |") | center,
|
|
text("| |") | center,
|
|
text("| |") | center,
|
|
text("|____|") | center,
|
|
});
|
|
}
|
|
} // namespace nearby::sharing::linux_tui
|