diff --git a/src/reactions/index.ts b/src/reactions/index.ts index f20b9340..16853cb3 100644 --- a/src/reactions/index.ts +++ b/src/reactions/index.ts @@ -25,6 +25,8 @@ import deerSoundOgg from "../sound/reactions/deer.ogg?url"; import deerSoundMp3 from "../sound/reactions/deer.mp3?url"; import rockSoundOgg from "../sound/reactions/rock.ogg?url"; import rockSoundMp3 from "../sound/reactions/rock.mp3?url"; +import waveSoundOgg from "../sound/reactions/wave.ogg?url"; +import waveSoundMp3 from "../sound/reactions/wave.mp3?url"; export const ElementCallReactionEventType = "io.element.call.reaction"; @@ -180,6 +182,15 @@ export const ReactionSet: ReactionOption[] = [ mp3: rockSoundMp3, }, }, + { + emoji: "👋", + name: "wave", + alias: ["hand", "waving"], + sound: { + ogg: waveSoundOgg, + mp3: waveSoundMp3, + }, + }, ]; export interface RaisedHandInfo { diff --git a/src/sound/reactions/wave.mp3 b/src/sound/reactions/wave.mp3 new file mode 100644 index 00000000..ede41fe8 Binary files /dev/null and b/src/sound/reactions/wave.mp3 differ diff --git a/src/sound/reactions/wave.ogg b/src/sound/reactions/wave.ogg new file mode 100644 index 00000000..f03fc95a Binary files /dev/null and b/src/sound/reactions/wave.ogg differ