@mirohq/design-system-icons 0.1.3-colors.0 → 0.2.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 (94) hide show
  1. package/dist/main.js +499 -204
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +482 -201
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +108 -141
  6. package/package.json +3 -3
  7. package/react/{search.tsx → arrow-box-out.tsx} +9 -5
  8. package/react/{icon-placeholder.tsx → arrow-down-left.tsx} +9 -5
  9. package/react/arrow-down-right.tsx +26 -0
  10. package/react/arrow-down.tsx +26 -0
  11. package/react/arrow-left.tsx +8 -3
  12. package/react/arrow-right.tsx +7 -2
  13. package/react/arrow-up-left.tsx +26 -0
  14. package/react/arrow-up-right.tsx +26 -0
  15. package/react/{arrow-top-right.tsx → arrow-up.tsx} +9 -4
  16. package/react/bar-three.tsx +7 -2
  17. package/react/check-mark.tsx +7 -2
  18. package/react/chevron-down.tsx +7 -2
  19. package/react/chevron-left.tsx +7 -2
  20. package/react/chevron-right.tsx +7 -2
  21. package/react/chevron-up.tsx +7 -2
  22. package/react/cog.tsx +28 -0
  23. package/react/cross-circle.tsx +8 -4
  24. package/react/cross.tsx +7 -2
  25. package/react/envelope.tsx +8 -12
  26. package/react/exclamation-point-circle.tsx +9 -4
  27. package/react/globe.tsx +8 -4
  28. package/react/house.tsx +24 -0
  29. package/react/index.ts +18 -4
  30. package/react/information-mark-circle.tsx +9 -4
  31. package/react/link.tsx +26 -0
  32. package/react/lock-closed.tsx +9 -14
  33. package/react/lock-open.tsx +9 -14
  34. package/react/magnifying-glass.tsx +26 -0
  35. package/react/minus.tsx +7 -2
  36. package/react/placeholder.tsx +26 -0
  37. package/react/plug.tsx +26 -0
  38. package/react/plus.tsx +7 -2
  39. package/react/{question-mark.tsx → question-mark-circle.tsx} +9 -5
  40. package/react/social-facebook.tsx +7 -2
  41. package/react/social-instagram.tsx +7 -2
  42. package/react/social-linkedin.tsx +7 -2
  43. package/react/social-twitter.tsx +7 -2
  44. package/react/social-youtube.tsx +7 -2
  45. package/react/user-add.tsx +26 -0
  46. package/react/user.tsx +26 -0
  47. package/react/users.tsx +26 -0
  48. package/react/wallet.tsx +27 -0
  49. package/svg/24/arrow-box-out.svg +1 -0
  50. package/svg/24/arrow-down-left.svg +1 -0
  51. package/svg/24/arrow-down-right.svg +1 -0
  52. package/svg/24/arrow-down.svg +1 -0
  53. package/svg/24/arrow-left.svg +1 -1
  54. package/svg/24/arrow-right.svg +1 -1
  55. package/svg/24/arrow-up-left.svg +1 -0
  56. package/svg/24/arrow-up-right.svg +1 -0
  57. package/svg/24/arrow-up.svg +1 -0
  58. package/svg/24/bar-three.svg +1 -1
  59. package/svg/24/check-mark.svg +1 -1
  60. package/svg/24/chevron-down.svg +1 -1
  61. package/svg/24/chevron-left.svg +1 -1
  62. package/svg/24/chevron-right.svg +1 -1
  63. package/svg/24/chevron-up.svg +1 -1
  64. package/svg/24/cog.svg +1 -0
  65. package/svg/24/cross-circle.svg +1 -1
  66. package/svg/24/cross.svg +1 -1
  67. package/svg/24/envelope.svg +1 -1
  68. package/svg/24/exclamation-point-circle.svg +1 -1
  69. package/svg/24/globe.svg +1 -1
  70. package/svg/24/house.svg +1 -0
  71. package/svg/24/information-mark-circle.svg +1 -1
  72. package/svg/24/link.svg +1 -0
  73. package/svg/24/lock-closed.svg +1 -1
  74. package/svg/24/lock-open.svg +1 -1
  75. package/svg/24/magnifying-glass.svg +1 -0
  76. package/svg/24/minus.svg +1 -1
  77. package/svg/24/placeholder.svg +1 -0
  78. package/svg/24/plug.svg +1 -0
  79. package/svg/24/plus.svg +1 -1
  80. package/svg/24/question-mark-circle.svg +1 -0
  81. package/svg/24/social-facebook.svg +1 -1
  82. package/svg/24/social-instagram.svg +1 -1
  83. package/svg/24/social-linkedin.svg +1 -1
  84. package/svg/24/social-twitter.svg +1 -1
  85. package/svg/24/social-youtube.svg +1 -1
  86. package/svg/24/user-add.svg +1 -0
  87. package/svg/24/user.svg +1 -0
  88. package/svg/24/users.svg +1 -0
  89. package/svg/24/wallet.svg +1 -0
  90. package/svg/meta.json +114 -8
  91. package/svg/24/arrow-top-right.svg +0 -1
  92. package/svg/24/icon-placeholder.svg +0 -1
  93. package/svg/24/question-mark.svg +0 -1
  94. package/svg/24/search.svg +0 -1
@@ -9,8 +9,13 @@ export const IconSocialLinkedin: ForwardRefExoticComponent<
9
9
  > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
10
  createElement(
11
11
  StyledIcon,
12
- { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },
13
- <path d='M0 0h24v24H0z' />,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
14
19
  <path
15
20
  fill='currentColor'
16
21
  d='M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z'
@@ -9,8 +9,13 @@ export const IconSocialTwitter: ForwardRefExoticComponent<
9
9
  > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
10
  createElement(
11
11
  StyledIcon,
12
- { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },
13
- <path d='M0 0h24v24H0z' />,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
14
19
  <path
15
20
  fill='currentColor'
16
21
  d='M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829c-1.19 2.065-.574 4.741 1.4 6.067a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039'
@@ -9,8 +9,13 @@ export const IconSocialYoutube: ForwardRefExoticComponent<
9
9
  > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
10
  createElement(
11
11
  StyledIcon,
12
- { ...props, size, viewBox: '0 0 24 24', fill: 'none', ref: forwardRef },
13
- <path d='M0 0h24v24H0z' />,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
14
19
  <path
15
20
  fill='currentColor'
16
21
  d='M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z'
@@ -0,0 +1,26 @@
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 IconUserAdd: 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
+ <path
20
+ stroke='currentColor'
21
+ strokeLinecap='round'
22
+ strokeWidth={2}
23
+ d='M2 11h3m0 0h3m-3 0V8m0 3v3m3 6 .443-2.658A4 4 0 0 1 12.389 14h5.223a4 4 0 0 1 3.945 3.342L22 20M18 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'
24
+ />
25
+ )
26
+ )
package/react/user.tsx ADDED
@@ -0,0 +1,26 @@
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 IconUser: 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
+ <path
20
+ stroke='currentColor'
21
+ strokeLinecap='round'
22
+ strokeWidth={2}
23
+ d='m4 20 .443-2.658A4 4 0 0 1 8.389 14h7.223a4 4 0 0 1 3.945 3.342L20 20M16 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z'
24
+ />
25
+ )
26
+ )
@@ -0,0 +1,26 @@
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 IconUsers: 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
+ <path
20
+ stroke='currentColor'
21
+ strokeLinecap='round'
22
+ strokeWidth={2}
23
+ d='m1 20 .443-2.658A4 4 0 0 1 5.389 14h5.222a4 4 0 0 1 3.946 3.342L15 20m3-4h1.852a3 3 0 0 1 2.977 2.628L23 20M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z'
24
+ />
25
+ )
26
+ )
@@ -0,0 +1,27 @@
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 IconWallet: 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
+ <path
20
+ stroke='currentColor'
21
+ strokeLinecap='square'
22
+ strokeWidth={2}
23
+ d='M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z'
24
+ />,
25
+ <circle cx={15.5} cy={10} r={1.5} fill='currentColor' />
26
+ )
27
+ )
@@ -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="M17 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h4.5M20 4l-9 9m2.002-9h7v7"/></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="M5 19h9m-9 0v-9m0 9L19 5"/></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="M19 19v-9m0 9h-9m9 0L5 5"/></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="M12 20V3m7 10.59-7 7-7-7"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h23.59v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20.59 12h-17M10 5l-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="M21 12H4m6.41-7-7 7 7 7"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20 12H3M13.59 5l7 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="M20 12H3m10.59-7 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"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 5v9m0-9h9M5 5l14 14"/></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="M19 5h-9m9 0v9m0-9L5 19"/></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="M12 4v17M5 10.41l7-7 7 7"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M21 5H3M21 12H3M21 19H3"/></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="M21 5H3m18 7H3m18 7H3"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m5 11 5 5 9-9"/></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="m5 11 5 5 9-9"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m6 9.5 6 6 6-6"/></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="m6 9.5 6 6 6-6"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m14.5 6-6 6 6 6"/></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="m14.5 6-6 6 6 6"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m9.5 6 6 6-6 6"/></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="m9.5 6 6 6-6 6"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m6 14.5 6-6 6 6"/></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="m6 14.5 6-6 6 6"/></svg>
package/svg/24/cog.svg ADDED
@@ -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="1" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.544 3h-3l-1 3-1.446.835L5 6.2 3.5 8.799l2.098 2.366v1.67L3.5 15.2 5 17.799l3.098-.634L9.544 18l1 3h3l1-3 1.446-.835 3.098.634 1.5-2.598-2.098-2.366v-1.67l2.099-2.366-1.5-2.598-3.099.634L14.544 6l-1-3Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m9 9 6 6M15 9l-6 6"/></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="m9 9 6 6m0-6-6 6m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/></svg>
package/svg/24/cross.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 fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m6 6 12 12M18 6 6 18"/></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="m6 6 12 12m0-12L6 18"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><rect width="18" height="14" x="3" y="5" stroke="currentColor" stroke-width="2" rx="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9"/></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="m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9M4 19h16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 7v6M12 16.5v.5"/></svg>
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>
package/svg/24/globe.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 fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9M12.337 3C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16"/></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="M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16m1-3a9 9 0 1 1-18 0 9 9 0 0 1 18 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"><path fill="currentColor" d="m12 4.4.707-.707L12 2.986l-.707.707L12 4.4Zm-9.707 8.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm18 1.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-9-10.414-9 9 1.414 1.414 9-9-1.414-1.414Zm0 1.414 9 9 1.414-1.414-9-9-1.414 1.414ZM7 19v-8.5H5V19h2Zm0 0H5a2 2 0 0 0 2 2v-2Zm10 0H7v2h10v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm0-8.5V19h2v-8.5h-2Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 6.5V7M12 11v6"/></svg>
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>
@@ -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="m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="16" r="1" fill="currentColor"/><rect width="14" height="10" x="5" y="11" stroke="currentColor" stroke-width="2" rx="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6"/><circle cx="12" cy="16" r="1" stroke="currentColor" stroke-width="2"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="12" cy="16" r="1" fill="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="16" r="1" fill="currentColor"/><rect width="14" height="10" x="5" y="11" stroke="currentColor" stroke-width="2" rx="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5"/><circle cx="12" cy="16" r="1" stroke="currentColor" stroke-width="2"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="12" cy="16" r="1" fill="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-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"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"/></svg>
package/svg/24/minus.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 fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 12h14"/></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="M5 12h14"/></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="m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 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"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m12.385 5.9 3.535-3.536m2.122 9.192 3.535-3.535M3.192 20.749l4.95-4.95m2.122-12.02 9.899 9.899-3.536 3.535a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l3.537-3.536Z"/></svg>
package/svg/24/plus.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 fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 12h14M12 5v14"/></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="M5 12h14m-7-7v14"/></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="M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1m9-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" d="M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54V12.06h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z"/></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="M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54V12.06h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" d="M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"/><path fill="currentColor" fill-rule="evenodd" d="M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.902 4.902 0 0 0-1.772 1.153A4.902 4.902 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.011 8.944 2 9.284 2 12s.011 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.901 4.901 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.901 4.901 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm6.538 4.662a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0Z" clip-rule="evenodd"/></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="M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"/><path fill="currentColor" fill-rule="evenodd" d="M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.902 4.902 0 0 0-1.772 1.153A4.902 4.902 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.011 8.944 2 9.284 2 12s.011 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.901 4.901 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.901 4.901 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm6.538 4.662a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0Z" clip-rule="evenodd"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" d="M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z"/></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="M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" d="M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829C1.34 5.894 1.956 8.57 3.93 9.896a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039"/></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="M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829C1.34 5.894 1.956 8.57 3.93 9.896a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" d="M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z"/></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="M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z"/></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="M2 11h3m0 0h3m-3 0V8m0 3v3m3 6 .443-2.658A4 4 0 0 1 12.389 14h5.223a4 4 0 0 1 3.945 3.342L22 20M18 8a3 3 0 1 1-6 0 3 3 0 0 1 6 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"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m4 20 .443-2.658A4 4 0 0 1 8.389 14h7.223a4 4 0 0 1 3.945 3.342L20 20M16 7a4 4 0 1 1-8 0 4 4 0 0 1 8 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"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m1 20 .443-2.658A4 4 0 0 1 5.389 14h5.222a4 4 0 0 1 3.946 3.342L15 20m3-4h1.852a3 3 0 0 1 2.977 2.628L23 20M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 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"><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>
package/svg/meta.json CHANGED
@@ -1,7 +1,16 @@
1
1
  {
2
- "icon-placeholder": {
2
+ "placeholder": {
3
3
  "tags": [
4
- "placeholder"
4
+ "placeholder",
5
+ "icon-placeholder"
6
+ ]
7
+ },
8
+ "arrow-box-out": {
9
+ "tags": [
10
+ "external",
11
+ "external page",
12
+ "new window",
13
+ "open new"
5
14
  ]
6
15
  },
7
16
  "arrow-left": {
@@ -18,12 +27,37 @@
18
27
  "arrow right"
19
28
  ]
20
29
  },
21
- "arrow-top-right": {
30
+ "arrow-down": {
31
+ "tags": [
32
+ ""
33
+ ]
34
+ },
35
+ "arrow-up": {
36
+ "tags": [
37
+ ""
38
+ ]
39
+ },
40
+ "arrow-up-right": {
22
41
  "tags": [
23
42
  "bar to top right",
24
43
  "bar-to-top-right"
25
44
  ]
26
45
  },
46
+ "arrow-down-left": {
47
+ "tags": [
48
+ ""
49
+ ]
50
+ },
51
+ "arrow-down-right": {
52
+ "tags": [
53
+ ""
54
+ ]
55
+ },
56
+ "arrow-up-left": {
57
+ "tags": [
58
+ ""
59
+ ]
60
+ },
27
61
  "bar-three": {
28
62
  "tags": [
29
63
  "bar",
@@ -87,6 +121,11 @@
87
121
  ""
88
122
  ]
89
123
  },
124
+ "house": {
125
+ "tags": [
126
+ ""
127
+ ]
128
+ },
90
129
  "information-mark-circle": {
91
130
  "tags": [
92
131
  ""
@@ -94,31 +133,48 @@
94
133
  },
95
134
  "lock-closed": {
96
135
  "tags": [
97
- ""
136
+ "lock closed",
137
+ "logged out",
138
+ "restricted"
98
139
  ]
99
140
  },
100
141
  "lock-open": {
101
142
  "tags": [
102
- ""
143
+ "lock open",
144
+ "logged in",
145
+ "unrestricted"
103
146
  ]
104
147
  },
105
- "search": {
148
+ "magnifying-glass": {
106
149
  "tags": [
107
- ""
150
+ "magnifying glass",
151
+ "search",
152
+ "loupe"
108
153
  ]
109
154
  },
110
155
  "minus": {
111
156
  "tags": [
157
+ "plus",
158
+ "min",
159
+ "minus",
160
+ "subtract",
161
+ "less",
112
162
  ""
113
163
  ]
114
164
  },
115
165
  "plus": {
116
166
  "tags": [
167
+ "plus",
168
+ "add",
169
+ "more",
117
170
  ""
118
171
  ]
119
172
  },
120
- "question-mark": {
173
+ "question-mark-circle": {
121
174
  "tags": [
175
+ "questions",
176
+ "QA",
177
+ "help",
122
178
  ""
123
179
  ]
124
180
  },
@@ -146,5 +202,55 @@
146
202
  "tags": [
147
203
  ""
148
204
  ]
205
+ },
206
+ "user": {
207
+ "tags": [
208
+ "user",
209
+ "profile",
210
+ "avatar"
211
+ ]
212
+ },
213
+ "user-add": {
214
+ "tags": [
215
+ "user add",
216
+ "user",
217
+ "shared with",
218
+ "sharing",
219
+ "user",
220
+ "invite"
221
+ ]
222
+ },
223
+ "users": {
224
+ "tags": [
225
+ "users",
226
+ "team",
227
+ "group",
228
+ "people"
229
+ ]
230
+ },
231
+ "wallet": {
232
+ "tags": [
233
+ "wallet",
234
+ "billing"
235
+ ]
236
+ },
237
+ "plug": {
238
+ "tags": [
239
+ "plug",
240
+ "apps",
241
+ "addon",
242
+ "applications"
243
+ ]
244
+ },
245
+ "cog": {
246
+ "tags": [
247
+ "cog",
248
+ "settings"
249
+ ]
250
+ },
251
+ "link": {
252
+ "tags": [
253
+ "link"
254
+ ]
149
255
  }
150
256
  }
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M10 5h9v9M19 5 5 19"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m3 3 18 18M21 3 3 21"/></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25M12 16.9v.1"/></svg>
package/svg/24/search.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><circle cx="10" cy="10" r="6" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="m20 20-5.5-5.5"/></svg>