@mirohq/design-system-icons 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/main.js +593 -18
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +572 -19
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +45 -1
  6. package/package.json +1 -1
  7. package/react/arrow-down.tsx +1 -1
  8. package/react/arrow-fat-right.tsx +32 -0
  9. package/react/arrow-up.tsx +1 -1
  10. package/react/chat.tsx +32 -0
  11. package/react/circle-motion-x.tsx +33 -0
  12. package/react/circle.tsx +32 -0
  13. package/react/exclamation-point-circle.tsx +2 -2
  14. package/react/funnel.tsx +33 -0
  15. package/react/index.ts +22 -0
  16. package/react/information-mark-circle.tsx +1 -1
  17. package/react/line-diagonal.tsx +33 -0
  18. package/react/microphone-slash.tsx +33 -0
  19. package/react/microphone.tsx +33 -0
  20. package/react/parallelogram.tsx +32 -0
  21. package/react/pause-circle.tsx +33 -0
  22. package/react/play-circle.tsx +26 -0
  23. package/react/playback-speed-circle.tsx +31 -0
  24. package/react/rhombus.tsx +32 -0
  25. package/react/shapes.tsx +33 -0
  26. package/react/sliders-x.tsx +33 -0
  27. package/react/sliders-y.tsx +33 -0
  28. package/react/speaker-cross.tsx +33 -0
  29. package/react/speaker-high.tsx +33 -0
  30. package/react/square-rounded.tsx +32 -0
  31. package/react/square.tsx +32 -0
  32. package/react/stop-circle.tsx +25 -0
  33. package/react/triangle.tsx +32 -0
  34. package/react/wallet.tsx +1 -1
  35. package/svg/24/arrow-down.svg +1 -1
  36. package/svg/24/arrow-fat-right.svg +1 -0
  37. package/svg/24/arrow-up.svg +1 -1
  38. package/svg/24/chat.svg +1 -0
  39. package/svg/24/circle-motion-x.svg +1 -0
  40. package/svg/24/circle.svg +1 -0
  41. package/svg/24/exclamation-point-circle.svg +1 -1
  42. package/svg/24/funnel.svg +1 -0
  43. package/svg/24/information-mark-circle.svg +1 -1
  44. package/svg/24/line-diagonal.svg +1 -0
  45. package/svg/24/microphone-slash.svg +1 -0
  46. package/svg/24/microphone.svg +1 -0
  47. package/svg/24/parallelogram.svg +1 -0
  48. package/svg/24/pause-circle.svg +1 -0
  49. package/svg/24/play-circle.svg +1 -0
  50. package/svg/24/playback-speed-circle.svg +1 -0
  51. package/svg/24/rhombus.svg +1 -0
  52. package/svg/24/shapes.svg +1 -0
  53. package/svg/24/sliders-x.svg +1 -0
  54. package/svg/24/sliders-y.svg +1 -0
  55. package/svg/24/speaker-cross.svg +1 -0
  56. package/svg/24/speaker-high.svg +1 -0
  57. package/svg/24/square-rounded.svg +1 -0
  58. package/svg/24/square.svg +1 -0
  59. package/svg/24/stop-circle.svg +1 -0
  60. package/svg/24/triangle.svg +1 -0
  61. package/svg/24/wallet.svg +1 -1
  62. package/svg/meta.json +143 -0
@@ -0,0 +1,25 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconStopCircle: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <circle cx={12} cy={12} r={8.5} stroke='currentColor' strokeWidth={2} />,
20
+ <path
21
+ fill='currentColor'
22
+ d='M9 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4Z'
23
+ />
24
+ )
25
+ )
@@ -0,0 +1,32 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconTriangle: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeWidth={2}
23
+ d='M20.58 20.526H3.4a.25.25 0 0 1-.225-.359l8.138-16.729a.25.25 0 0 1 .445-.01l9.043 16.73a.25.25 0 0 1-.22.368Z'
24
+ />
25
+ </g>,
26
+ <defs>
27
+ <clipPath id='a'>
28
+ <path d='M0 0h24v24H0z' />
29
+ </clipPath>
30
+ </defs>
31
+ )
32
+ )
package/react/wallet.tsx CHANGED
@@ -22,6 +22,6 @@ export const IconWallet: ForwardRefExoticComponent<
22
22
  strokeWidth={2}
23
23
  d='M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z'
24
24
  />,
25
- <circle cx={15.5} cy={10} r={1.5} fill='currentColor' />
25
+ <path fill='currentColor' d='M17 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z' />
26
26
  )
27
27
  )
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 20V3m7 10.59-7 7-7-7"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12.205 3.205v17m-7-6.41 7 7 7-7"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="M11 7H3.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25H11v3.937c0 .216.257.33.418.185L21.5 12 11.418 2.878a.25.25 0 0 0-.418.185V7Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 4v17M5 10.41l7-7 7 7"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12.205 20.795v-17m7 6.41-7-7-7 7"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="m12 18.5-3.847 2.404A.1.1 0 0 1 8 20.82V18.5H5.5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10.5a2 2 0 0 1-2 2H12Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M3.5 6H5m3 0h7m0 0a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM2.5 10H9m-6 4h1m3 0h2m-5 4h10.5"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="M20.5 12c0 4.97-3.53 8.5-8.5 8.5-4.97 0-8.5-3.53-8.5-8.5 0-4.97 3.53-8.5 8.5-8.5 4.97 0 8.5 3.53 8.5 8.5Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="12" cy="15.5" r="1" fill="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"/><path fill="currentColor" d="M13 15.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M19.772 4H4.228a.1.1 0 0 0-.073.168L10 10.5V19l3.447-1.724a1 1 0 0 0 .553-.894V10.5l5.845-6.332A.1.1 0 0 0 19.772 4Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="12" cy="8.5" r="1" fill="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M13 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M4 20 20 4"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M19 8v3a7 7 0 0 1-7 7m0 0v3m0-3a6.984 6.984 0 0 1-5.284-2.409M15 7v4a3 3 0 0 1-5.387 1.818M15 7 4 18M15 7l4-4M5 8v3c0 .34.024.673.07 1M9 7.5V6a3 3 0 0 1 4.5-2.599"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 8v3a7 7 0 0 0 7 7m7-10v3a7 7 0 0 1-7 7m0 0v3m3-15v5a3 3 0 1 1-6 0V6a3 3 0 1 1 6 0Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="M21.68 4H6.195a.25.25 0 0 0-.242.19l-3.875 15.5a.25.25 0 0 0 .242.31h15.485a.25.25 0 0 0 .242-.19l3.875-15.5A.25.25 0 0 0 21.68 4Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M13.889 9.167v5.666M10.11 9.167v5.666M20.5 12a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8.5" stroke="currentColor" stroke-width="2"/><path fill="currentColor" stroke="currentColor" d="M15.099 12 10.5 15.066V8.934L15.099 12Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M10.583 3.618a8.5 8.5 0 1 1 .173 16.792M7.3 4.917a8.547 8.547 0 0 0-2.222 2.15m-1.444 3.421a8.55 8.55 0 0 0-.016 2.929m1.479 3.543a8.55 8.55 0 0 0 1.709 1.769"/><path fill="currentColor" stroke="currentColor" d="M15.099 12 10.5 15.066V8.934L15.099 12Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="m11.823 3.177-8.646 8.646a.25.25 0 0 0 0 .354l8.646 8.646a.25.25 0 0 0 .354 0l8.646-8.646a.25.25 0 0 0 0-.354l-8.646-8.646a.25.25 0 0 0-.354 0Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M8 9.5a6.5 6.5 0 1 1 6.5 6.5M3.25 10h10.5a.25.25 0 0 1 .25.25v10.5a.25.25 0 0 1-.25.25H3.25a.25.25 0 0 1-.25-.25v-10.5a.25.25 0 0 1 .25-.25Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20 8h-5M9 8H4m11.5 8H4m8-6a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm6 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 5v4m0 6v4m7-14v10m0 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm7-5.5V19M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm14-5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m21 9.5-5 5m0-5 5 5M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16 10v4m3-8.5V18M3.1 15h3.856a.1.1 0 0 1 .074.033l4.796 5.276A.1.1 0 0 0 12 20.24V3.76a.1.1 0 0 0-.174-.068L7.03 8.967A.1.1 0 0 1 6.956 9H3.1a.1.1 0 0 0-.1.1v5.8a.1.1 0 0 0 .1.1Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="M16 4H8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="M19.75 4H4.25a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8.5" stroke="currentColor" stroke-width="2"/><path fill="currentColor" d="M9 10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-4Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-width="2" d="M20.58 20.526H3.4a.25.25 0 0 1-.225-.359l8.138-16.729a.25.25 0 0 1 .445-.01l9.043 16.73a.25.25 0 0 1-.22.368Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24H0z"/></clipPath></defs></svg>
package/svg/24/wallet.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="square" stroke-width="2" d="M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z"/><circle cx="15.5" cy="10" r="1.5" fill="currentColor"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="square" stroke-width="2" d="M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z"/><path fill="currentColor" d="M17 10a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/></svg>
package/svg/meta.json CHANGED
@@ -253,5 +253,148 @@
253
253
  "tags": [
254
254
  "link"
255
255
  ]
256
+ },
257
+ "funnel": {
258
+ "tags": [
259
+ "funnel",
260
+ "filter"
261
+ ]
262
+ },
263
+ "playback-speed-circle": {
264
+ "tags": [
265
+ ""
266
+ ]
267
+ },
268
+ "circle-motion-x": {
269
+ "tags": [
270
+ "circle motion x",
271
+ "oval",
272
+ "circle",
273
+ "motion",
274
+ "x",
275
+ "animate",
276
+ "animation"
277
+ ]
278
+ },
279
+ "speaker-high": {
280
+ "tags": [
281
+ "speaker high",
282
+ "speaker",
283
+ "high",
284
+ "sound",
285
+ "on"
286
+ ]
287
+ },
288
+ "speaker-cross": {
289
+ "tags": [
290
+ "speaker cross",
291
+ "speaker",
292
+ "sound",
293
+ "off",
294
+ "muted"
295
+ ]
296
+ },
297
+ "stop-circle": {
298
+ "tags": [
299
+ "stop circle",
300
+ "stop"
301
+ ]
302
+ },
303
+ "play-circle": {
304
+ "tags": [
305
+ "play circle",
306
+ "play"
307
+ ]
308
+ },
309
+ "shapes": {
310
+ "tags": [
311
+ "shapes",
312
+ "rectangle",
313
+ "oval"
314
+ ]
315
+ },
316
+ "microphone-slash": {
317
+ "tags": [
318
+ "microphone slash",
319
+ "microphone",
320
+ "mic",
321
+ "slash"
322
+ ]
323
+ },
324
+ "microphone": {
325
+ "tags": [
326
+ "microphone",
327
+ "mic"
328
+ ]
329
+ },
330
+ "line-diagonal": {
331
+ "tags": [
332
+ "line diagonal",
333
+ "line",
334
+ "diagonal",
335
+ "oblique"
336
+ ]
337
+ },
338
+ "arrow-fat-right": {
339
+ "tags": [
340
+ "arrow fat right",
341
+ "arrow",
342
+ "fat",
343
+ "right"
344
+ ]
345
+ },
346
+ "parallelogram": {
347
+ "tags": [
348
+ "parallelogram"
349
+ ]
350
+ },
351
+ "square-rounded": {
352
+ "tags": [
353
+ "square rounded",
354
+ "square",
355
+ "rounded"
356
+ ]
357
+ },
358
+ "rhombus": {
359
+ "tags": [
360
+ "rhombus"
361
+ ]
362
+ },
363
+ "triangle": {
364
+ "tags": [
365
+ "triangle"
366
+ ]
367
+ },
368
+ "circle": {
369
+ "tags": [
370
+ "circle"
371
+ ]
372
+ },
373
+ "square": {
374
+ "tags": [
375
+ "square"
376
+ ]
377
+ },
378
+ "pause-circle": {
379
+ "tags": [
380
+ "pause circle",
381
+ "pause"
382
+ ]
383
+ },
384
+ "sliders-y": {
385
+ "tags": [
386
+ ""
387
+ ]
388
+ },
389
+ "sliders-x": {
390
+ "tags": [
391
+ ""
392
+ ]
393
+ },
394
+ "chat": {
395
+ "tags": [
396
+ "chat",
397
+ "bubble"
398
+ ]
256
399
  }
257
400
  }