diff --git a/src/assets/svg/microphone-slash.svg b/src/assets/svg/microphone-slash.svg new file mode 100644 index 0000000..509006b --- /dev/null +++ b/src/assets/svg/microphone-slash.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/svg/microphone.svg b/src/assets/svg/microphone.svg new file mode 100644 index 0000000..ca9f412 --- /dev/null +++ b/src/assets/svg/microphone.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/utils/bx-icon.ts b/src/utils/bx-icon.ts index 2e16174..8366257 100644 --- a/src/utils/bx-icon.ts +++ b/src/utils/bx-icon.ts @@ -16,6 +16,9 @@ import iconTrash from "@assets/svg/trash.svg" with { type: "text" }; import iconTouchControlEnable from "@assets/svg/touch-control-enable.svg" with { type: "text" }; import iconTouchControlDisable from "@assets/svg/touch-control-disable.svg" with { type: "text" }; +import iconMicrophone from "@assets/svg/microphone.svg" with { type: "text" }; +import iconMicrophoneMuted from "@assets/svg/microphone-slash.svg" with { type: "text" }; + export const BxIcon = { STREAM_SETTINGS: iconStreamSettings, STREAM_STATS: iconStreamStats, @@ -37,5 +40,6 @@ export const BxIcon = { TOUCH_CONTROL_ENABLE: iconTouchControlEnable, TOUCH_CONTROL_DISABLE: iconTouchControlDisable, - // HAND_TAP = '', + MICROPHONE: iconMicrophone, + MICROPHONE_MUTED: iconMicrophoneMuted, } as const;