diff --git a/src/button/__snapshots__/ReactionToggleButton.test.tsx.snap b/src/button/__snapshots__/ReactionToggleButton.test.tsx.snap index 5db4582c8..7bc890c50 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="_r_bb_" + aria-labelledby="_r_bh_" class="_button_1nw83_8 _has-icon_1nw83_60 _icon-only_1nw83_53" data-kind="primary" data-size="lg" diff --git a/src/reactions/index.ts b/src/reactions/index.ts index acf7e1816..26ca7f142 100644 --- a/src/reactions/index.ts +++ b/src/reactions/index.ts @@ -29,6 +29,8 @@ import waveSoundOgg from "../sound/reactions/wave.ogg?url"; import waveSoundMp3 from "../sound/reactions/wave.mp3?url"; import baduntssSoundOgg from "../sound/reactions/baduntss.ogg?url"; import baduntssSoundMp3 from "../sound/reactions/baduntss.mp3?url"; +import bellSoundOgg from "../sound/reactions/bell.ogg?url"; +import bellSoundMp3 from "../sound/reactions/bell.mp3?url"; export const ElementCallReactionEventType = "io.element.call.reaction"; @@ -202,6 +204,15 @@ export const ReactionSet: ReactionOption[] = [ mp3: baduntssSoundMp3, }, }, + { + emoji: "🛎️", + name: "bell", + alias: ["ding"], + sound: { + ogg: bellSoundOgg, + mp3: bellSoundMp3, + }, + }, ]; export interface RaisedHandInfo { diff --git a/src/sound/LICENCE.md b/src/sound/LICENCE.md index c4f81363a..2ed799121 100644 --- a/src/sound/LICENCE.md +++ b/src/sound/LICENCE.md @@ -10,6 +10,7 @@ The following sound effects have been licensed from Pixabay, under https://pixab - `reactions/generic` - `reactions/lightbulb` - `reactions/party` +- `reactions/bell` ### Other diff --git a/src/sound/reactions/bell.mp3 b/src/sound/reactions/bell.mp3 new file mode 100644 index 000000000..108c773ca Binary files /dev/null and b/src/sound/reactions/bell.mp3 differ diff --git a/src/sound/reactions/bell.ogg b/src/sound/reactions/bell.ogg new file mode 100644 index 000000000..ef01eec44 Binary files /dev/null and b/src/sound/reactions/bell.ogg differ