AyuGramDesktop/Telegram/SourceFiles/ayu/ui/ayu_lottie.cpp
ZavaruKitsu c226311126 feat: add lottie icons support in context menu
Co-authored-by: MaxPlays35 <35427519+maxplays35@users.noreply.github.com>
2023-08-28 15:07:50 +00:00

16 lines
No EOL
423 B
C++

// This is the source code of AyuGram for Desktop.
//
// We do not and cannot prevent the use of our code,
// but be respectful and credit the original author.
//
// Copyright @Radolyn, 2023
#include "ayu_lottie.h"
namespace AyuUi {
std::unique_ptr<Lottie::Icon> getLottie(const QString& text) {
// todo: some kind of mapping
// Lottie::MakeIcon({.json = QString(), .sizeOverride = {24, 24}});
return nullptr;
}
}