@mirohq/design-system-icons 0.67.1 → 0.69.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.
@@ -0,0 +1,135 @@
1
+ /**
2
+ * DO NOT MODIFY THIS FILE.
3
+ * This file was generated by sync icons utility.
4
+ */
5
+ import React, { forwardRef, createElement } from 'react'
6
+ import { iconSymbol } from '@mirohq/design-system-base-icon'
7
+ import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
8
+ import { useNewDesignLanguageIcons } from '@mirohq/design-system-experiments'
9
+
10
+ import { StyledIcon } from '../src/icon'
11
+ import type { IconComponentType } from '../src/icon'
12
+
13
+ export const IconSentimentNew: IconComponentType = forwardRef(
14
+ (props, forwardRef) => {
15
+ const [debug] = useLocalStorage('DEBUG_ICON', false)
16
+ return createElement(
17
+ StyledIcon,
18
+ {
19
+ ...props,
20
+ debug,
21
+ 'aria-hidden': true,
22
+ viewBox: '0 0 24 24',
23
+ fill: 'none',
24
+ ref: forwardRef,
25
+ },
26
+ <path
27
+ fill='currentColor'
28
+ stroke='currentColor'
29
+ strokeWidth='var(--svg-stroke-width)'
30
+ d='M10.3333 6.8333h.8334v.8334h-.8334v-.8334ZM16.3333 12.8333h.8334v.8334h-.8334v-.8334Z'
31
+ />,
32
+ <path
33
+ stroke='currentColor'
34
+ strokeLinecap='square'
35
+ strokeLinejoin='round'
36
+ strokeWidth='var(--svg-stroke-width)'
37
+ d='M15 9c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z'
38
+ />,
39
+ <path
40
+ fill='currentColor'
41
+ stroke='currentColor'
42
+ strokeWidth='var(--svg-stroke-width)'
43
+ d='M6.8333 6.8333h.8334v.8334h-.8334v-.8334Z'
44
+ />,
45
+ <path
46
+ stroke='currentColor'
47
+ strokeLinejoin='round'
48
+ strokeWidth='var(--svg-stroke-width)'
49
+ d='M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25'
50
+ />,
51
+ <path
52
+ stroke='currentColor'
53
+ strokeLinejoin='round'
54
+ strokeWidth='var(--svg-stroke-width)'
55
+ d='M18 9.8027c1.7934 1.0374 3 2.9765 3 5.1973 0 3.3137-2.6862 6-6 6-2.2208 0-4.1598-1.2066-5.1973-3'
56
+ />,
57
+ <path
58
+ stroke='currentColor'
59
+ strokeLinejoin='round'
60
+ strokeWidth='var(--svg-stroke-width)'
61
+ d='M12.2953 17.75c.2351-1.2801 1.3566-2.25 2.7046-2.25 1.3481 0 2.4696.9699 2.7047 2.25'
62
+ />
63
+ )
64
+ }
65
+ )
66
+
67
+ export const IconSentimentOld: IconComponentType = forwardRef(
68
+ (props, forwardRef) => {
69
+ const [debug] = useLocalStorage('DEBUG_ICON', false)
70
+ return createElement(
71
+ StyledIcon,
72
+ {
73
+ ...props,
74
+ debug,
75
+ 'aria-hidden': true,
76
+ viewBox: '0 0 24 24',
77
+ fill: 'none',
78
+ ref: forwardRef,
79
+ },
80
+ <path
81
+ stroke='currentColor'
82
+ strokeLinecap='square'
83
+ strokeLinejoin='round'
84
+ strokeWidth='var(--svg-stroke-width)'
85
+ d='M15 9c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z'
86
+ />,
87
+ <path
88
+ stroke='currentColor'
89
+ strokeLinecap='round'
90
+ strokeLinejoin='round'
91
+ strokeWidth='var(--svg-stroke-width)'
92
+ d='M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25'
93
+ />,
94
+ <path
95
+ stroke='currentColor'
96
+ strokeLinejoin='round'
97
+ strokeWidth='var(--svg-stroke-width)'
98
+ d='M18 9.8027c1.7934 1.0374 3 2.9765 3 5.1973 0 3.3137-2.6862 6-6 6-2.2208 0-4.1598-1.2066-5.1973-3'
99
+ />,
100
+ <path
101
+ stroke='currentColor'
102
+ strokeLinecap='round'
103
+ strokeLinejoin='round'
104
+ strokeWidth='var(--svg-stroke-width)'
105
+ d='M12.2953 17.75c.2351-1.2801 1.3566-2.25 2.7046-2.25 1.3481 0 2.4696.9699 2.7047 2.25'
106
+ />,
107
+ <circle cx={7} cy={7} r={1} fill='currentColor' />,
108
+ <circle cx={11} cy={7} r={1} fill='currentColor' />,
109
+ <circle cx={17} cy={13} r={1} fill='currentColor' />
110
+ )
111
+ }
112
+ )
113
+
114
+ export const IconSentiment: IconComponentType = forwardRef(
115
+ ({ size = 'medium', weight = 'normal', ...props }, forwardRef) => {
116
+ const [v1] = useNewDesignLanguageIcons()
117
+ return v1 ? (
118
+ <IconSentimentNew
119
+ {...props}
120
+ size={size}
121
+ weight={weight}
122
+ ref={forwardRef}
123
+ />
124
+ ) : (
125
+ <IconSentimentOld
126
+ {...props}
127
+ size={size}
128
+ weight={weight}
129
+ ref={forwardRef}
130
+ />
131
+ )
132
+ }
133
+ )
134
+
135
+ IconSentiment[iconSymbol] = true
package/react/wand.tsx ADDED
@@ -0,0 +1,98 @@
1
+ /**
2
+ * DO NOT MODIFY THIS FILE.
3
+ * This file was generated by sync icons utility.
4
+ */
5
+ import React, { forwardRef, createElement } from 'react'
6
+ import { iconSymbol } from '@mirohq/design-system-base-icon'
7
+ import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
8
+ import { useNewDesignLanguageIcons } from '@mirohq/design-system-experiments'
9
+
10
+ import { StyledIcon } from '../src/icon'
11
+ import type { IconComponentType } from '../src/icon'
12
+
13
+ export const IconWandNew: IconComponentType = forwardRef(
14
+ (props, forwardRef) => {
15
+ const [debug] = useLocalStorage('DEBUG_ICON', false)
16
+ return createElement(
17
+ StyledIcon,
18
+ {
19
+ ...props,
20
+ debug,
21
+ 'aria-hidden': true,
22
+ viewBox: '0 0 24 24',
23
+ fill: 'none',
24
+ ref: forwardRef,
25
+ },
26
+ <path
27
+ stroke='currentColor'
28
+ strokeLinecap='round'
29
+ strokeLinejoin='round'
30
+ strokeWidth='var(--svg-stroke-width)'
31
+ d='m8 20 9-9m-13 5 9-9m0 0 2.5858-2.5858c.781-.781 2.0474-.781 2.8284 0l1.1716 1.1716c.781.781.781 2.0474 0 2.8284l-2.5858 2.5858m-4-4 4 4'
32
+ />,
33
+ <path
34
+ stroke='currentColor'
35
+ strokeLinecap='round'
36
+ strokeLinejoin='round'
37
+ strokeWidth='var(--svg-stroke-width)'
38
+ d='m13 7-7 7-2.5858 2.5858c-.781.781-.781 2.0474 0 2.8284l1.1716 1.1716c.781.781 2.0474.781 2.8284 0l2.5858-2.5858 7-7'
39
+ />,
40
+ <path
41
+ fill='currentColor'
42
+ fillRule='evenodd'
43
+ d='M12.75 1h-.5c0 .6904-.5596 1.25-1.25 1.25v.5c.6903 0 1.25.5597 1.25 1.25h.5c0-.6903.5597-1.25 1.25-1.25v1.25-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM18.75 14h-.5c0 .6904-.5596 1.25-1.25 1.25v.5001c.6903 0 1.25.5596 1.25 1.2499h.5c0-.6903.5597-1.2499 1.25-1.2499v1.2499-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM6.9166 3h-.8332c0 1.1506-.9328 2.0834-2.0834 2.0834v.8334c1.1506 0 2.0833.9326 2.0834 2.0832h.8332c.0001-1.1505.9328-2.0832 2.0834-2.0832v2.0832-5 2.0834c-1.1506 0-2.0834-.9328-2.0834-2.0834Z'
44
+ clipRule='evenodd'
45
+ />
46
+ )
47
+ }
48
+ )
49
+
50
+ export const IconWandOld: IconComponentType = forwardRef(
51
+ (props, forwardRef) => {
52
+ const [debug] = useLocalStorage('DEBUG_ICON', false)
53
+ return createElement(
54
+ StyledIcon,
55
+ {
56
+ ...props,
57
+ debug,
58
+ 'aria-hidden': true,
59
+ viewBox: '0 0 24 24',
60
+ fill: 'none',
61
+ ref: forwardRef,
62
+ },
63
+ <path
64
+ stroke='currentColor'
65
+ strokeLinecap='round'
66
+ strokeLinejoin='round'
67
+ strokeWidth='var(--svg-stroke-width)'
68
+ d='m8 20 9-9m-13 5 9-9m0 0 2.5858-2.5858c.781-.781 2.0474-.781 2.8284 0l1.1716 1.1716c.781.781.781 2.0474 0 2.8284l-2.5858 2.5858m-4-4 4 4'
69
+ />,
70
+ <path
71
+ stroke='currentColor'
72
+ strokeLinecap='round'
73
+ strokeLinejoin='round'
74
+ strokeWidth='var(--svg-stroke-width)'
75
+ d='m13 7-7 7-2.5858 2.5858c-.781.781-.781 2.0474 0 2.8284l1.1716 1.1716c.781.781 2.0474.781 2.8284 0l2.5858-2.5858 7-7'
76
+ />,
77
+ <path
78
+ fill='currentColor'
79
+ fillRule='evenodd'
80
+ d='M12.75 1h-.5c0 .6904-.5596 1.25-1.25 1.25v.5c.6903 0 1.25.5597 1.25 1.25h.5c0-.6903.5597-1.25 1.25-1.25v1.25-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM18.75 14h-.5c0 .6904-.5596 1.25-1.25 1.25v.5001c.6903 0 1.25.5596 1.25 1.2499h.5c0-.6903.5597-1.2499 1.25-1.2499v1.2499-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM6.9166 3h-.8332c0 1.1506-.9328 2.0834-2.0834 2.0834v.8334c1.1506 0 2.0833.9326 2.0834 2.0832h.8332c.0001-1.1505.9328-2.0832 2.0834-2.0832v2.0832-5 2.0834c-1.1506 0-2.0834-.9328-2.0834-2.0834Z'
81
+ clipRule='evenodd'
82
+ />
83
+ )
84
+ }
85
+ )
86
+
87
+ export const IconWand: IconComponentType = forwardRef(
88
+ ({ size = 'medium', weight = 'normal', ...props }, forwardRef) => {
89
+ const [v1] = useNewDesignLanguageIcons()
90
+ return v1 ? (
91
+ <IconWandNew {...props} size={size} weight={weight} ref={forwardRef} />
92
+ ) : (
93
+ <IconWandOld {...props} size={size} weight={weight} ref={forwardRef} />
94
+ )
95
+ }
96
+ )
97
+
98
+ IconWand[iconSymbol] = true
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M4 3h8m8 0h-8m0 0v5m-8 13h8m8 0h-8m0 0v-5M2 12h8" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="m6 8 4 4-4 4M18 8l-4 4 4 4" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M22 12h-8" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m9.4 14.2218-1.2258-.5218-1.2547 1.4952.7268 1.1166-.7863.9369-2.9036-4.9031.8922-1.0633 5.3376 2.0025-.7862.937Zm-2.1294-.9263c-1.1153-.4673-1.7455-.7324-1.8904-.7951-.145-.0627-.2575-.1148-.3374-.1563.1877.2626.6313.936 1.331 2.0203l.8968-1.0689Zm-.7527-3.9684 1.071-1.2764c.4881-.5817.9251-.9344 1.3111-1.0583.386-.1239.7595-.0344 1.1205.2685.245.2056.3978.4318.4583.6786.0606.2469.0268.479-.1015.6964l.0281.0236c.2761-.2113.5419-.3078.7973-.2894.2555.0183.5151.1382.7788.3594.3741.3139.5524.6938.5351 1.1399-.0173.446-.2205.9009-.6097 1.3647l-1.2876 1.5345-4.1014-3.4415Zm2.354.4933.4237-.505c.1978-.2356.3045-.4369.3202-.6037.0157-.1669-.0606-.321-.2289-.4622-.157-.1318-.318-.1689-.4828-.1111-.1648.0577-.3515.211-.5602.4597l-.3837.4573.9117.765Zm.6901.5791 1.0689.8968.4755-.5666c.2008-.2394.3033-.4546.3074-.6456.0041-.191-.0883-.3657-.2772-.5242-.3404-.2856-.7146-.1853-1.1226.301l-.452.5386Zm2.3216-6.1167c-.2746.3272-.3643.6838-.269 1.0697.0953.386.3627.7633.8022 1.132.9145.7675 1.6597.808 2.2357.1216.2417-.288.4623-.6972.662-1.2276l.7294.612c-.1422.4543-.3875.889-.7359 1.3043-.5006.5966-1.0645.901-1.6916.9135-.6271.0124-1.2791-.2654-1.9562-.8335-.4264-.3578-.7348-.749-.9253-1.1733s-.2493-.8537-.1764-1.2881c.0729-.4345.2733-.847.6013-1.238.3343-.3983.7664-.7177 1.2965-.9582l.4715.8737a6.0654 6.0654 0 0 0-.5791.3028c-.1845.1098-.3395.2394-.4651.389Z" clip-rule="evenodd" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" d="M2.2498 20.3971a.45.45 0 0 1 0-.9c.3868 0 .5502-.0002.7483-.0009a.45.45 0 0 1 .0032.9 196.162 196.162 0 0 1-.7515.0009Zm2.2724-.0323a.45.45 0 0 1-.045-.8989 11.541 11.541 0 0 0 .7193-.0563.45.45 0 1 1 .1014.8942c-.2374.027-.4926.0468-.7757.061Zm2.3542-.4318a.45.45 0 1 1-.331-.837c.2074-.082.407-.1809.6056-.3002a.45.45 0 0 1 .4637.7713 4.9778 4.9778 0 0 1-.7383.3659Zm2.0242-1.3812a.45.45 0 0 1-.6248-.6478c.1609-.1552.3289-.3272.5067-.5188a.45.45 0 1 1 .6597.6122 14.0808 14.0808 0 0 1-.5416.5544Zm1.5235-1.6828a.45.45 0 0 1-.6928-.5744 53.974 53.974 0 0 0 .4704-.5761.4499.4499 0 1 1 .7007.5647c-.1694.2103-.328.4046-.4783.5858Zm1.4184-1.7723a.45.45 0 1 1-.7086-.5547c.1412-.1804.2922-.374.4605-.5903a.45.45 0 1 1 .7103.5526 235.91 235.91 0 0 1-.4622.5924Zm1.3851-1.7814a.45.45 0 0 1-.7112-.5515c.2347-.3027.3291-.4244.4601-.593a.45.45 0 0 1 .7108.552c-.1308.1684-.2251.29-.4597.5925Zm1.3809-1.7728a.45.45 0 1 1-.7074-.5563c.167-.2124.3215-.4076.4673-.5903a.45.45 0 1 1 .7035.5613c-.1443.1809-.2976.3746-.4634.5853Zm1.4055-1.7372a.45.45 0 1 1-.687-.5813c.1762-.2082.3421-.3993.5003-.5759a.45.45 0 1 1 .6704.6005c-.1523.17-.3127.3547-.4837.5567Zm1.5023-1.5872a.45.45 0 0 1-.5958-.6746c.2127-.1878.42-.3526.6264-.4976a.45.45 0 0 1 .5173.7364c-.1781.1251-.3594.2693-.5479.4358Zm1.7919-1.0424a.45.45 0 0 1-.2542-.8634c.2476-.0729.5082-.1301.7898-.1743a.45.45 0 1 1 .1395.8891c-.2442.0384-.4666.0872-.6751.1486Zm2.0967-.2626a.45.45 0 1 1-.027-.8995c.2267-.0069.4735-.0111.7596-.0136a.45.45 0 0 1 .0077.9 34.516 34.516 0 0 0-.7403.0131Z" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M2.2498 20.3971a.45.45 0 0 1 0-.9c.3868 0 .5502-.0002.7483-.0009a.45.45 0 0 1 .0032.9 196.162 196.162 0 0 1-.7515.0009Zm2.2724-.0323a.45.45 0 0 1-.045-.8989 11.541 11.541 0 0 0 .7193-.0563.45.45 0 1 1 .1014.8942c-.2374.027-.4926.0468-.7757.061Zm2.3542-.4318a.45.45 0 1 1-.331-.837c.2074-.082.407-.1809.6056-.3002a.45.45 0 0 1 .4637.7713 4.9778 4.9778 0 0 1-.7383.3659Zm2.0242-1.3812a.45.45 0 0 1-.6248-.6478 13.093 13.093 0 0 0 .5067-.5189.4501.4501 0 0 1 .6597.6123 14.0808 14.0808 0 0 1-.5416.5544Zm7.1134-8.7465a.45.45 0 1 1-.687-.5813c.1762-.2082.3421-.3993.5003-.5759a.45.45 0 1 1 .6704.6005c-.1523.17-.3127.3547-.4837.5567Zm1.5023-1.5872a.45.45 0 0 1-.5958-.6746c.2127-.1878.42-.3526.6264-.4976a.45.45 0 0 1 .5173.7364c-.1781.1251-.3594.2693-.5479.4358Zm1.7919-1.0424a.45.45 0 0 1-.2542-.8634c.2476-.0729.5082-.1301.7898-.1743a.45.45 0 1 1 .1395.8891c-.2442.0384-.4666.0872-.6751.1486Zm2.0967-.2626a.45.45 0 1 1-.027-.8995c.2267-.0069.4735-.0111.7596-.0136a.45.45 0 0 1 .0077.9 34.516 34.516 0 0 0-.7403.0131Z" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" fill-rule="evenodd" d="m9.2048 15.856-.3882-1.2745h-1.9518l-.3882 1.2745h-1.2232l1.8897-5.376h1.388l1.8969 5.376h-1.2232Zm-.6592-2.2266c-.3588-1.1548-.5609-1.8079-.606-1.9592-.0452-.1514-.0775-.271-.097-.3589-.0806.3125-.3114 1.0852-.6922 2.3181h1.3952Zm2.5562-3.1274h1.6663c.7592 0 1.3104.108 1.6534.324.343.2161.5145.5597.5145 1.0309 0 .3199-.075.5823-.2252.7874-.1501.2051-.3497.3284-.5987.3699v.0366c.3393.0757.5841.2173.7342.4248.1502.2075.2252.4834.2252.8276 0 .4883-.1764.8692-.5291 1.1426-.3528.2734-.8319.4102-1.4374.4102h-2.0032v-5.354Zm1.1353 2.1203h.6591c.3077 0 .5304-.0476.6684-.1428.1379-.0952.2069-.2527.2069-.4724 0-.2051-.0751-.3522-.2252-.4413-.1502-.0891-.3876-.1337-.7123-.1337h-.5969v1.1902Zm0 .9009v1.3953h.7397c.3125 0 .5432-.0599.6921-.1795.149-.1196.2234-.3027.2234-.5493 0-.4443-.3173-.6665-.9521-.6665h-.7031Zm6.1779-2.1533c-.4272 0-.758.1605-.9924.4815-.2344.3211-.3516.7685-.3516 1.3422 0 1.1939.448 1.7908 1.344 1.7908.376 0 .8313-.094 1.366-.282v.9521c-.4394.1831-.9302.2747-1.4722.2747-.7788 0-1.3745-.2362-1.7871-.7086-.4126-.4724-.6189-1.1505-.6189-2.0343 0-.5567.1013-1.0443.304-1.463.2026-.4187.4938-.7398.8734-.9632.3796-.2234.8246-.3351 1.3348-.3351.5201 0 1.0425.1258 1.5674.3772l-.3662.9229a6.0683 6.0683 0 0 0-.6042-.249c-.2027-.0708-.4016-.1062-.597-.1062Z" clip-rule="evenodd" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" fill-rule="evenodd" d="M15.7144 12.5021c.2042-1.4155 2.2495-1.4183 2.4539.0001.2398 1.6644 1.5476 2.9721 3.2122 3.2122 1.4128.2038 1.4211 2.2491 0 2.4539-1.6646.2398-2.9724 1.5476-3.2122 3.2122-.2048 1.4211-2.2501 1.4128-2.4539 0-.24-1.6646-1.5478-2.9724-3.2122-3.2122-1.4184-.2044-1.4155-2.2497-.0001-2.4539 1.6645-.2401 2.9722-1.5478 3.2123-3.2123Zm1.2269 2.4169a5.8051 5.8051 0 0 1-2.0223 2.0223 5.8035 5.8035 0 0 1 2.0223 2.0223 5.8018 5.8018 0 0 1 2.0223-2.0223 5.8035 5.8035 0 0 1-2.0223-2.0223Z" clip-rule="evenodd" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" d="M21.3386 16.7604c-2.1241-.3064-3.7931-1.9752-4.0992-4.0994-.0399-.2766-.4391-.2765-.479 0-.3064 2.1242-1.9752 3.793-4.0994 4.0994-.2765.0399-.2766.4391 0 .479 2.1242.3061 3.793 1.9751 4.0994 4.0992.0399.2766.4391.2768.479.0002.3061-2.1244 1.975-3.7933 4.0994-4.0994.2766-.0399.2764-.4391-.0002-.479Z" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-width="2" d="M17 15v.0001" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" d="M12 12v-.75l-.75.75h.75Zm9 0h.75l-.75-.75v.75Zm-5.9062 7.2222h.75v-.75h-.75v.75Zm2.8124 0v-.75h-.75v.75h.75Zm-5.9062-6.4722h9v-1.5h-9v1.5Zm.75 4.4722v-5.2222h-1.5v5.2222h1.5Zm2.3438 1.25h-1.0938v1.5h1.0938v-1.5Zm.75 2.1216v-1.3716h-1.5v1.3716h1.5Zm1.3124-1.3716v1.3716h1.5v-1.3716h-1.5Zm1.8438-.75h-1.0938v1.5h1.0938v-1.5Zm1.25-6.4722v5.2222h1.5v-5.2222h-1.5Zm-3.75 10.75c1.1909 0 2.1562-.9654 2.1562-2.1562h-1.5a.6562.6562 0 0 1-.6562.6562v1.5Zm-2.1562-2.1562c0 1.1908.9653 2.1562 2.1562 2.1562v-1.5a.6562.6562 0 0 1-.6562-.6562h-1.5Zm4.6562-.6216c1.5188 0 2.75-1.2312 2.75-2.75h-1.5c0 .6904-.5596 1.25-1.25 1.25v1.5Zm-7.75-2.75c0 1.5188 1.2312 2.75 2.75 2.75v-1.5c-.6904 0-1.25-.5596-1.25-1.25h-1.5Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-width="1.5" d="M12 17h9M15 12v3M18 12v3" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" stroke="currentColor" stroke-width=".5" d="M18.3333 15.3333h.3334v.3334h-.3334v-.3334Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="square" stroke-linejoin="round" stroke-width="2" d="M22 17c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5Z" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" stroke="currentColor" stroke-width=".5" d="M15.3333 15.3333h.3334v.3334h-.3334v-.3334Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="M19 17c-.1739 1.1378-1.0032 2-2 2-.9968 0-1.8261-.8622-2-2" style="vector-effect:non-scaling-stroke"/></svg>
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="M3 20h4c1.1046 0 2-.8954 2-2v-9c0-1.1046.8954-2 2-2h4m0 0v3l6-3-6-3v3Z" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="m14.5 3.5.5 3.5-.5 3.5 6.5-3.5-6.5-3.5Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="square" stroke-linejoin="round" stroke-width="2" d="M3 20h4c1.1046 0 2-.8954 2-2v-9c0-1.1046.8954-2 2-2h4m0 0-.5-3.5 6.5 3.5-6.5 3.5.5-3.5Z" style="vector-effect:non-scaling-stroke"/></svg>
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="m14.5 9.5-11.5 11.5m18-18-3 10-7-7 10-3Z" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="m19.6569 4.1213-2.6569 7.3787-1.8787-2.8431-3.1213-1.6569 7.6569-2.8787Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="square" stroke-linejoin="round" stroke-width="2" d="m15.1213 8.6569-3.1213-1.6569 7.6569-2.8787-2.6569 7.3787-1.8787-2.8431Zm0 0-11.1213 11.3431" style="vector-effect:non-scaling-stroke"/></svg>
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 14c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 22c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2Z" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M12 7c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 14c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 21c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2Z" style="vector-effect:non-scaling-stroke"/></svg>
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="M13.9999 12v-5.25c0-.9665.7835-1.75 1.75-1.75s1.75.7835 1.75 1.75v5.25-3.25c0-.9665.7835-1.75 1.75-1.75s1.75.7835 1.75 1.75v4.25c0 4.4183-3.5819 8-8.0002 8h-.5832a8.2475 8.2475 0 0 1-5.8327-2.4161l-4.0031-4.0031c-.6138-.6138-.6595-1.592-.1075-2.2619.5638-.6841 1.5612-.8145 2.2818-.2983l2.245 1.6081v-6.8787c0-.9665.7834-1.75 1.75-1.75.9664 0 1.7499.7835 1.7499 1.75v5.25m3.5-2v-5.25c0-.9665-.7835-1.75-1.75-1.75s-1.75.7835-1.75 1.75v5.25" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linejoin="bevel" stroke-width="2" d="M13.9999 12v-5.25c0-.9665.5336-1.75 1.5001-1.75s1.5.7835 1.5 1.75v5.25-3c0-1 .5-2 1.5-2s1.5 1 1.5 2v4c0 4.4183-1.7499 8-5.75 8h-1.5c-2 0-3.619-.8689-5.1662-2.4161l-4.0031-4.0031c-.6138-.6138-.6595-1.592-.1075-2.2619.5638-.6841 1.5612-.8145 2.2818-.2983l2.245 1.6081v-6.8787c0-.9665.5335-1.75 1.5-1.75s1.5.7835 1.5 1.75v5.25m2.9999-2v-5.25c0-.9665-.5334-1.75-1.4999-1.75s-1.5.7835-1.5 1.75v5" style="vector-effect:non-scaling-stroke"/></svg>
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" d="m8 7.4142 1.155-1.155 8.845 5.307v.8676l-8.845 5.307-1.155-1.155v-9.1716Z" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" stroke="currentColor" stroke-width="2" d="m8 7.4142 1.155-1.155 8.845 5.307v.8676l-8.845 5.307-1.155-1.155v-9.1716Z" style="vector-effect:non-scaling-stroke"/></svg>
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" d="M12 3v18m9-9h-18" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" d="M12 4v16m8-8h-16" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" stroke="currentColor" stroke-width=".667" d="M10.3333 6.8333h.8334v.8334h-.8334v-.8334ZM16.3333 12.8333h.8334v.8334h-.8334v-.8334Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="square" stroke-linejoin="round" stroke-width="2" d="M15 9c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" stroke="currentColor" stroke-width=".667" d="M6.8333 6.8333h.8334v.8334h-.8334v-.8334Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M18 9.8027c1.7934 1.0374 3 2.9765 3 5.1973 0 3.3137-2.6862 6-6 6-2.2208 0-4.1598-1.2066-5.1973-3" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="M12.2953 17.75c.2351-1.2801 1.3566-2.25 2.7046-2.25 1.3481 0 2.4696.9699 2.7047 2.25" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <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-linejoin="round" stroke-width="2" d="M15 9c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M18 9.8027c1.7934 1.0374 3 2.9765 3 5.1973 0 3.3137-2.6862 6-6 6-2.2208 0-4.1598-1.2066-5.1973-3" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12.2953 17.75c.2351-1.2801 1.3566-2.25 2.7046-2.25 1.3481 0 2.4696.9699 2.7047 2.25" style="vector-effect:non-scaling-stroke"/><circle cx="7" cy="7" r="1" fill="currentColor" style="vector-effect:non-scaling-stroke"/><circle cx="11" cy="7" r="1" fill="currentColor" style="vector-effect:non-scaling-stroke"/><circle cx="17" cy="13" r="1" fill="currentColor" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <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-linejoin="round" stroke-width="2" d="m8 20 9-9m-13 5 9-9m0 0 2.5858-2.5858c.781-.781 2.0474-.781 2.8284 0l1.1716 1.1716c.781.781.781 2.0474 0 2.8284l-2.5858 2.5858m-4-4 4 4" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m13 7-7 7-2.5858 2.5858c-.781.781-.781 2.0474 0 2.8284l1.1716 1.1716c.781.781 2.0474.781 2.8284 0l2.5858-2.5858 7-7" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" fill-rule="evenodd" d="M12.75 1h-.5c0 .6904-.5596 1.25-1.25 1.25v.5c.6903 0 1.25.5597 1.25 1.25h.5c0-.6903.5597-1.25 1.25-1.25v1.25-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM18.75 14h-.5c0 .6904-.5596 1.25-1.25 1.25v.5001c.6903 0 1.25.5596 1.25 1.2499h.5c0-.6903.5597-1.2499 1.25-1.2499v1.2499-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM6.9166 3h-.8332c0 1.1506-.9328 2.0834-2.0834 2.0834v.8334c1.1506 0 2.0833.9326 2.0834 2.0832h.8332c.0001-1.1505.9328-2.0832 2.0834-2.0832v2.0832-5 2.0834c-1.1506 0-2.0834-.9328-2.0834-2.0834Z" clip-rule="evenodd" style="vector-effect:non-scaling-stroke"/></svg>
@@ -0,0 +1,2 @@
1
+ <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
+ <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-linejoin="round" stroke-width="2" d="m8 20 9-9m-13 5 9-9m0 0 2.5858-2.5858c.781-.781 2.0474-.781 2.8284 0l1.1716 1.1716c.781.781.781 2.0474 0 2.8284l-2.5858 2.5858m-4-4 4 4" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m13 7-7 7-2.5858 2.5858c-.781.781-.781 2.0474 0 2.8284l1.1716 1.1716c.781.781 2.0474.781 2.8284 0l2.5858-2.5858 7-7" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" fill-rule="evenodd" d="M12.75 1h-.5c0 .6904-.5596 1.25-1.25 1.25v.5c.6903 0 1.25.5597 1.25 1.25h.5c0-.6903.5597-1.25 1.25-1.25v1.25-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM18.75 14h-.5c0 .6904-.5596 1.25-1.25 1.25v.5001c.6903 0 1.25.5596 1.25 1.2499h.5c0-.6903.5597-1.2499 1.25-1.2499v1.2499-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM6.9166 3h-.8332c0 1.1506-.9328 2.0834-2.0834 2.0834v.8334c1.1506 0 2.0833.9326 2.0834 2.0832h.8332c.0001-1.1505.9328-2.0832 2.0834-2.0832v2.0832-5 2.0834c-1.1506 0-2.0834-.9328-2.0834-2.0834Z" clip-rule="evenodd" style="vector-effect:non-scaling-stroke"/></svg>
package/svg/meta.json CHANGED
@@ -1723,6 +1723,20 @@
1723
1723
  ],
1724
1724
  "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=2010:316&m=dev"
1725
1725
  },
1726
+ "arrows-horizontal-lines-top-bottom-in": {
1727
+ "tags": [
1728
+ "arrows horizontal lines top bottom",
1729
+ "arrows",
1730
+ "horizontal",
1731
+ "lines",
1732
+ "top",
1733
+ "bottom",
1734
+ "cells",
1735
+ "unmerge",
1736
+ "cm"
1737
+ ],
1738
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12104:787&m=dev"
1739
+ },
1726
1740
  "link-plus": {
1727
1741
  "tags": ["link plus", "link", "plus"],
1728
1742
  "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=2010:319&m=dev"
@@ -3026,6 +3040,40 @@
3026
3040
  ],
3027
3041
  "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=10349:525&m=dev"
3028
3042
  },
3043
+ "sentiment": {
3044
+ "tags": [
3045
+ "squares four",
3046
+ "squares",
3047
+ "boxes",
3048
+ "set",
3049
+ "four",
3050
+ "4",
3051
+ "tile",
3052
+ "boards",
3053
+ "apps",
3054
+ "applications",
3055
+ "grid",
3056
+ "breakouts"
3057
+ ],
3058
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12044:486&m=dev"
3059
+ },
3060
+ "wand": {
3061
+ "tags": [
3062
+ "squares four",
3063
+ "squares",
3064
+ "boxes",
3065
+ "set",
3066
+ "four",
3067
+ "4",
3068
+ "tile",
3069
+ "boards",
3070
+ "apps",
3071
+ "applications",
3072
+ "grid",
3073
+ "breakouts"
3074
+ ],
3075
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12044:504&m=dev"
3076
+ },
3029
3077
  "warning": {
3030
3078
  "tags": ["warning", "banner", "alert", "triangle", "exclamation"],
3031
3079
  "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=10361:5&m=dev"
@@ -3087,5 +3135,25 @@
3087
3135
  "ratio-square": {
3088
3136
  "tags": ["ratio", "frame", "size", "1:1", "square"],
3089
3137
  "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=11560:1573&m=dev"
3138
+ },
3139
+ "caption-along": {
3140
+ "tags": [""],
3141
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12101:80&m=dev"
3142
+ },
3143
+ "caption-horizontal": {
3144
+ "tags": [""],
3145
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12101:81&m=dev"
3146
+ },
3147
+ "cluster-sentiment": {
3148
+ "tags": ["cluster", "similarity"],
3149
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12104:810&m=dev"
3150
+ },
3151
+ "cluster-ai": {
3152
+ "tags": ["cluster", "similarity"],
3153
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12104:819&m=dev"
3154
+ },
3155
+ "cluster-color": {
3156
+ "tags": ["cluster", "similarity"],
3157
+ "figmaLink": "https://www.figma.com/design/jSWCA1HFD22hk0isIY37ua/%5Bmds%5D-Icons?node-id=12104:839&m=dev"
3090
3158
  }
3091
3159
  }