diff --git a/src/button/__snapshots__/ReactionToggleButton.test.tsx.snap b/src/button/__snapshots__/ReactionToggleButton.test.tsx.snap index 4937bae3..ff0b182c 100644 --- a/src/button/__snapshots__/ReactionToggleButton.test.tsx.snap +++ b/src/button/__snapshots__/ReactionToggleButton.test.tsx.snap @@ -9,7 +9,7 @@ exports[`Can close reaction dialog 1`] = ` aria-disabled="false" aria-expanded="true" aria-haspopup="true" - aria-labelledby=":rav:" + aria-labelledby=":rb5:" class="_button_i91xf_17 _has-icon_i91xf_66 _icon-only_i91xf_59" data-kind="primary" data-size="lg" 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/LICENCE.md b/src/sound/LICENCE.md index a984803a..94e29b0e 100644 --- a/src/sound/LICENCE.md +++ b/src/sound/LICENCE.md @@ -22,3 +22,4 @@ The following sound effects have been originally created by Element. - `join_call` - `end_call` - `reactions/rock` +- `reactions/wave` 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