diff options
Diffstat (limited to 'src/components/Icons.tsx')
-rw-r--r-- | src/components/Icons.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/Icons.tsx b/src/components/Icons.tsx index 96df3dc..a24045e 100644 --- a/src/components/Icons.tsx +++ b/src/components/Icons.tsx @@ -190,3 +190,16 @@ export function ImageInvisible(props: IconProps) { </Icon> ); } + +export function Microphone(props: IconProps) { + return ( + <Icon + {...props} + className={classes(props.className, "vc-microphone")} + viewBox="0 0 24 24" + > + <path fill-rule="evenodd" clip-rule="evenodd" d="M14.99 11C14.99 12.66 13.66 14 12 14C10.34 14 9 12.66 9 11V5C9 3.34 10.34 2 12 2C13.66 2 15 3.34 15 5L14.99 11ZM12 16.1C14.76 16.1 17.3 14 17.3 11H19C19 14.42 16.28 17.24 13 17.72V21H11V17.72C7.72 17.23 5 14.41 5 11H6.7C6.7 14 9.24 16.1 12 16.1ZM12 4C11.2 4 11 4.66667 11 5V11C11 11.3333 11.2 12 12 12C12.8 12 13 11.3333 13 11V5C13 4.66667 12.8 4 12 4Z" fill="currentColor" /> + <path fill-rule="evenodd" clip-rule="evenodd" d="M14.99 11C14.99 12.66 13.66 14 12 14C10.34 14 9 12.66 9 11V5C9 3.34 10.34 2 12 2C13.66 2 15 3.34 15 5L14.99 11ZM12 16.1C14.76 16.1 17.3 14 17.3 11H19C19 14.42 16.28 17.24 13 17.72V22H11V17.72C7.72 17.23 5 14.41 5 11H6.7C6.7 14 9.24 16.1 12 16.1Z" fill="currentColor" /> + </Icon > + ); +} |