From 14f4d66ea688b3202983b3893ce3a5c66cda49d0 Mon Sep 17 00:00:00 2001 From: bsu3338 Date: Sat, 5 Aug 2023 01:20:05 -0500 Subject: [PATCH] Create ListeningIcon.tsx --- client/src/components/svg/ListeningIcon.tsx | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 client/src/components/svg/ListeningIcon.tsx diff --git a/client/src/components/svg/ListeningIcon.tsx b/client/src/components/svg/ListeningIcon.tsx new file mode 100644 index 0000000000..3931fa2033 --- /dev/null +++ b/client/src/components/svg/ListeningIcon.tsx @@ -0,0 +1,24 @@ +import React from 'react'; + +export default function ListeningIcon() { + return ( + + + + + + + + ); +}