@mirohq/design-system-icons 1.19.1 → 1.20.1
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.
- package/dist/main.js +465 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +449 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +37 -3
- package/package.json +4 -4
- package/react/activity-sparkle.tsx +1 -1
- package/react/android-share.tsx +36 -0
- package/react/box-lines-textarea.tsx +34 -0
- package/react/briefcase.tsx +34 -0
- package/react/chart-bar-x-simple.tsx +34 -0
- package/react/circle-dashed-loop.tsx +34 -0
- package/react/folder-filled.tsx +34 -0
- package/react/image-sparkle.tsx +1 -1
- package/react/index.ts +17 -0
- package/react/insights-search.tsx +34 -0
- package/react/ios-share.tsx +34 -0
- package/react/map-user.tsx +34 -0
- package/react/measure-pencil.tsx +34 -0
- package/react/miro-mark.tsx +36 -0
- package/react/screen-user.tsx +34 -0
- package/react/shopping-bag.tsx +34 -0
- package/react/target-arrow.tsx +34 -0
- package/react/timeline-location.tsx +34 -0
- package/react/user-sparkle.tsx +34 -0
- package/react/word-cloud.tsx +34 -0
- package/svg/24/activity-sparkle.svg +1 -1
- package/svg/24/android-share.svg +2 -0
- package/svg/24/box-lines-textarea.svg +2 -0
- package/svg/24/briefcase.svg +2 -0
- package/svg/24/chart-bar-x-simple.svg +2 -0
- package/svg/24/circle-dashed-loop.svg +2 -0
- package/svg/24/folder-filled.svg +2 -0
- package/svg/24/image-sparkle.svg +1 -1
- package/svg/24/insights-search.svg +2 -0
- package/svg/24/ios-share.svg +2 -0
- package/svg/24/map-user.svg +2 -0
- package/svg/24/measure-pencil.svg +2 -0
- package/svg/24/miro-mark.svg +2 -0
- package/svg/24/screen-user.svg +2 -0
- package/svg/24/shopping-bag.svg +2 -0
- package/svg/24/target-arrow.svg +2 -0
- package/svg/24/timeline-location.svg +2 -0
- package/svg/24/user-sparkle.svg +2 -0
- package/svg/24/word-cloud.svg +2 -0
- package/svg/meta.json +169 -6
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconInsightsSearch: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M19.75 17.375a2.375 2.375 0 1 0-4.75 0 2.375 2.375 0 0 0 4.75 0ZM15 10v2h-5v-2h5Zm5.585-5a1 1 0 0 0-.897-.995L19.585 4h-10a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1H11v2H9.585a3 3 0 0 1-3-3V8.65l-1.758.309a1.001 1.001 0 0 0-.811 1.16l1.736 9.847a1 1 0 0 0 1.158.811l4.925-.868.347 1.97-4.924.868a3 3 0 0 1-3.476-2.433l-1.736-9.85A3 3 0 0 1 4.48 6.99l2.105-.372V5a3 3 0 0 1 3-3h10l.154.004A3 3 0 0 1 22.585 5v7h-2V5ZM19 6v2h-9V6h9Zm2.75 11.375c0 .846-.24 1.635-.656 2.305l2.613 2.613-1.414 1.414-2.614-2.614a4.375 4.375 0 1 1 2.071-3.718Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconInsightsSearch[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconIosShare: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='m12.707.293 4 4-1.414 1.414L13 3.414V13h-2V3.414L8.707 5.707 7.293 4.293l4-4h1.414ZM3 19V9a2 2 0 0 1 2-2h4v2H5v10h14V9h-4V7h4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconIosShare[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconMapUser: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M7 13a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-3 4a4.97 4.97 0 0 1 4.94 4.414l.054.474-1.988.224-.053-.474a2.972 2.972 0 0 0-5.906 0l-.053.474-1.988-.224.054-.474A4.972 4.972 0 0 1 6 17ZM9.316 3.052 15 4.946l5.684-1.894L22 4v14.5l-.615.923-6 2.5h-.77l-2.25-.938.77-1.845.75.312.115.048V6.72L9 5.054 4 6.72V8H2V6l.684-.948 6-2h.632ZM16 6.72V19.5l4-1.667V5.387L16 6.72Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconMapUser[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconMeasurePencil: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M19.707 19.293 19 21H4l-1-1V5l1.707-.707 15 15ZM5 11h2v2H5v2h2v2H5v2h11.586L5 7.414V11Zm4.793-8.207a3.121 3.121 0 0 1 4.414 0l6.964 6.964.81 4.046-1.177 1.177-3.75-.75-.297-.058-.214-.215-6.75-6.75a3.121 3.121 0 0 1 0-4.414ZM13.414 8l4.328 4.328 1.983.396-.397-1.982L15 6.414 13.414 8Zm-.621-3.793a1.122 1.122 0 0 0-1.586 1.586l.793.793L13.586 5l-.793-.793Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconMeasurePencil[iconSymbol] = true
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconMiroMark: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
fillRule='evenodd'
|
|
29
|
+
d='M16.17 3h-2.633l2.195 3.857L10.902 3H8.268l2.415 4.714L5.634 3H3l2.634 6L3 21h2.634l5.049-12.857L8.268 21h2.634l4.83-13.714L13.537 21h2.634L21 6l-4.83-3Z'
|
|
30
|
+
clipRule='evenodd'
|
|
31
|
+
/>
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
IconMiroMark[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconScreenUser: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M22 19v2H2v-2h20Zm-10-6a4.972 4.972 0 0 1 4.564 3H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2.437A4.972 4.972 0 0 1 12 13Zm0 2c-.878 0-1.673.385-2.22 1h4.44A2.965 2.965 0 0 0 12 15Zm1-6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm7 6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v9Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconScreenUser[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconShoppingBag: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M13.5 5.5a1.5 1.5 0 1 0-3 0v1h3v-1Zm-8.426 15h13.852l-.857-12H5.93l-.857 12Zm3.425-9V10h2v1.5a1.5 1.5 0 0 0 3 0V10h2v1.5a3.5 3.5 0 1 1-7 0Zm7-5h2.57a2 2 0 0 1 1.995 1.857l.856 12a2 2 0 0 1-1.994 2.143H5.074a2 2 0 0 1-1.996-2.143l.858-12A2 2 0 0 1 5.93 6.5h2.568v-1a3.5 3.5 0 0 1 7 0v1Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconShoppingBag[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconTargetArrow: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10v-2a8 8 0 1 1 8-8h2c0-5.523-4.477-10-10-10Zm0 5a5 5 0 0 0 0 10v-2a3 3 0 1 1 3-3h2a5 5 0 0 0-5-5Zm.707 4.293L17.414 16H20v2h-2v2h-2v-2.585l-4.707-4.708 1.414-1.414Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconTargetArrow[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconTimelineLocation: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M2 19v-2a2 2 0 0 1 2-2h7v2H4v2h16v-4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2ZM15.476 4a5.46 5.46 0 0 1 4.733 2.724l.188.345v.003c.803 1.632.82 3.482-.045 5.055l-.001-.001c-.366.675-1.273 1.896-2.043 2.899a109.54 109.54 0 0 1-1.599 2.028l-.448.567-1.554.019-.473-.569-.005-.007c-.15-.184-.896-1.1-1.68-2.119-.756-.982-1.636-2.175-1.98-2.868-.643-1.291-.741-2.824-.293-4.223l.002-.006c.461-1.406 1.41-2.57 2.726-3.241A5.312 5.312 0 0 1 15.476 4Zm0 2c-.547 0-1.06.126-1.552.38l-.007.004c-.816.415-1.43 1.145-1.738 2.086a3.68 3.68 0 0 0 .11 2.563l.07.154c.24.481.981 1.507 1.775 2.539a93.933 93.933 0 0 0 1.329 1.682c.293-.366.764-.958 1.259-1.602.806-1.05 1.602-2.135 1.873-2.636l.005-.008c.524-.953.542-2.11.002-3.207A3.47 3.47 0 0 0 15.476 6ZM17.5 9.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconTimelineLocation[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconUserSparkle: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M9.45 7.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm-2 0a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm4.5 5.5a7.077 7.077 0 0 0-7.042 6.373L4.755 20.9l1.99.2.153-1.528A5.077 5.077 0 0 1 11.95 15v-2Zm6.3 0A3.75 3.75 0 0 0 22 16.75v1.5A3.75 3.75 0 0 0 18.25 22h-1.5A3.75 3.75 0 0 0 13 18.25v-1.5A3.75 3.75 0 0 0 16.75 13h1.5Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconUserSparkle[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconWordCloud: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M19 12a2 2 0 0 0-2-2H7a2 2 0 1 0 0 4h10a2 2 0 0 0 2-2Zm2 0a4 4 0 0 1-4 4H7a4 4 0 0 1 0-8h10a4 4 0 0 1 4 4Zm-3 7.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5Zm2 0a2.5 2.5 0 0 1-2.5 2.5h-5a2.5 2.5 0 0 1 0-5h5a2.5 2.5 0 0 1 2.5 2.5Zm-13 0a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Zm2 0A2.5 2.5 0 0 1 6.5 22h-1a2.5 2.5 0 0 1 0-5h1A2.5 2.5 0 0 1 9 19.5Zm5-15a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5Zm2 0A2.5 2.5 0 0 1 13.5 7h-3a2.5 2.5 0 0 1 0-5h3A2.5 2.5 0 0 1 16 4.5Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconWordCloud[iconSymbol] = true
|
|
@@ -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="
|
|
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 4a8 8 0 0 0-6.953 11.959l.137.23.103.822-.764 2.457 2.431-.77.83.103.282.167A7.965 7.965 0 0 0 12 20a8 8 0 0 0 7.936-7h2.014c-.502 5.053-4.765 9-9.95 9a9.973 9.973 0 0 1-4.864-1.263l-3.833 1.216-1.258-1.25 1.201-3.867A9.958 9.958 0 0 1 2 12C2 6.477 6.477 2 12 2v2Zm-.08 8.923.616-1.232.09-.151a1.25 1.25 0 0 1 1.028-.54H15l-.882 2-1.223 2.447-1.752.068L9 11.943l-.643 1.072-1.714-1.03 1.5-2.5h1.714l2.063 3.438ZM19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5Z"/></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="M17.5 3a3.5 3.5 0 1 1-2.724 5.698l-4.92 2.812a3.498 3.498 0 0 1 .127 1.32l4.653 2.658a3.5 3.5 0 1 1-.635 1.94l-4.778-2.73a3.5 3.5 0 1 1-.459-4.867l5.252-3A3.5 3.5 0 0 1 17.5 3Zm0 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm-11-5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm11-6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" clip-rule="evenodd"/></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="M3 6v13h18V6H3Zm16 6v2H5v-2h14Zm-3-4v2H5V8h11Zm7 11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2v13Z"/></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="m20 12.54-7.594 3.374h-.812L4 12.54V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.46ZM13.5 10v2h-3v-2h3ZM20 9a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v1.35l8 3.555 8-3.555V9Zm-5-4a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1h6V5Zm2 1h2a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h2V5a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v1Z"/></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="M5 4v2h14V4H5Zm16 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2ZM5 18v2h5v-2H5Zm7 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v2Zm-7-9v2h9v-2H5Zm11 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v2Z"/></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="M11.5 6.022A5.998 5.998 0 0 0 6.022 11.5H4.018A7.998 7.998 0 0 1 11.5 4.017v2.005Zm1-2.005a7.998 7.998 0 0 1 7.482 7.483h-2.005A5.998 5.998 0 0 0 12.5 6.022V4.017ZM6.022 12.5a5.999 5.999 0 0 0 11.956 0h2.004a7.98 7.98 0 0 1-2.694 5.5l-.022.019c-.068.06-.137.118-.207.175l-.054.044a7.84 7.84 0 0 1-.215.165l-.087.066a7.876 7.876 0 0 1-.5.336 7.406 7.406 0 0 1-.321.188l-.072.04a8.103 8.103 0 0 1-.558.276l-.108.046a8.17 8.17 0 0 1-.227.094l-.117.044c-.079.03-.157.058-.237.085-.027.01-.055.018-.083.027a8.151 8.151 0 0 1-.415.123 5.042 5.042 0 0 1-.176.046c-.063.016-.127.029-.19.042-.066.014-.13.029-.196.041-.037.008-.074.013-.111.02-.087.015-.174.03-.262.043-.033.005-.067.007-.1.012-.09.011-.18.022-.27.03-.066.007-.132.01-.198.015-.058.005-.115.01-.173.013-.13.006-.259.01-.389.01H3v-2h3.712a7.98 7.98 0 0 1-2.694-5.5h2.004ZM21 20h-4.878a9.03 9.03 0 0 0 2.585-2H21v2Z"/></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="M16 7v2.5h3V7h-3ZM4 19h16v-7.5h-6l-.759-.35-1.006-1.172L10.541 8H4.81a.81.81 0 0 0-.81.81V19ZM6 4v2h5.031l.764.356 1.97 2.333.235.275V4H6Zm10 1h3a2 2 0 0 1 2 2v2.5l1 1V20l-1 1H3l-1-1V8.81a2.81 2.81 0 0 1 2-2.69V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v1Z"/></svg>
|
package/svg/24/image-sparkle.svg
CHANGED
|
@@ -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" fill-rule="evenodd" d="M12 2v2H5a1 1 0 0 0-1 1v9.148l2.219-2.773L7 11h2l.747.336L17.448 20H19a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h7ZM4 17.352V19a1 1 0 0 0 1 1h9.773l-6.221-7h-1.07L4 17.
|
|
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="M12 2v2H5a1 1 0 0 0-1 1v9.148l2.219-2.773L7 11h2l.747.336L17.448 20H19a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h7ZM4 17.352V19a1 1 0 0 0 1 1h9.773l-6.221-7h-1.07L4 17.352ZM19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5Z" clip-rule="evenodd"/></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="M19.75 17.375a2.375 2.375 0 1 0-4.75 0 2.375 2.375 0 0 0 4.75 0ZM15 10v2h-5v-2h5Zm5.585-5a1 1 0 0 0-.897-.995L19.585 4h-10a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1H11v2H9.585a3 3 0 0 1-3-3V8.65l-1.758.309a1.001 1.001 0 0 0-.811 1.16l1.736 9.847a1 1 0 0 0 1.158.811l4.925-.868.347 1.97-4.924.868a3 3 0 0 1-3.476-2.433l-1.736-9.85A3 3 0 0 1 4.48 6.99l2.105-.372V5a3 3 0 0 1 3-3h10l.154.004A3 3 0 0 1 22.585 5v7h-2V5ZM19 6v2h-9V6h9Zm2.75 11.375c0 .846-.24 1.635-.656 2.305l2.613 2.613-1.414 1.414-2.614-2.614a4.375 4.375 0 1 1 2.071-3.718Z"/></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="m12.707.293 4 4-1.414 1.414L13 3.414V13h-2V3.414L8.707 5.707 7.293 4.293l4-4h1.414ZM3 19V9a2 2 0 0 1 2-2h4v2H5v10h14V9h-4V7h4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"/></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="M7 13a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-3 4a4.97 4.97 0 0 1 4.94 4.414l.054.474-1.988.224-.053-.474a2.972 2.972 0 0 0-5.906 0l-.053.474-1.988-.224.054-.474A4.972 4.972 0 0 1 6 17ZM9.316 3.052 15 4.946l5.684-1.894L22 4v14.5l-.615.923-6 2.5h-.77l-2.25-.938.77-1.845.75.312.115.048V6.72L9 5.054 4 6.72V8H2V6l.684-.948 6-2h.632ZM16 6.72V19.5l4-1.667V5.387L16 6.72Z"/></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="M19.707 19.293 19 21H4l-1-1V5l1.707-.707 15 15ZM5 11h2v2H5v2h2v2H5v2h11.586L5 7.414V11Zm4.793-8.207a3.121 3.121 0 0 1 4.414 0l6.964 6.964.81 4.046-1.177 1.177-3.75-.75-.297-.058-.214-.215-6.75-6.75a3.121 3.121 0 0 1 0-4.414ZM13.414 8l4.328 4.328 1.983.396-.397-1.982L15 6.414 13.414 8Zm-.621-3.793a1.122 1.122 0 0 0-1.586 1.586l.793.793L13.586 5l-.793-.793Z"/></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="M16.17 3h-2.633l2.195 3.857L10.902 3H8.268l2.415 4.714L5.634 3H3l2.634 6L3 21h2.634l5.049-12.857L8.268 21h2.634l4.83-13.714L13.537 21h2.634L21 6l-4.83-3Z" clip-rule="evenodd"/></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="M22 19v2H2v-2h20Zm-10-6a4.972 4.972 0 0 1 4.564 3H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2.437A4.972 4.972 0 0 1 12 13Zm0 2c-.878 0-1.673.385-2.22 1h4.44A2.965 2.965 0 0 0 12 15Zm1-6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm7 6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v9Z"/></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="M13.5 5.5a1.5 1.5 0 1 0-3 0v1h3v-1Zm-8.426 15h13.852l-.857-12H5.93l-.857 12Zm3.425-9V10h2v1.5a1.5 1.5 0 0 0 3 0V10h2v1.5a3.5 3.5 0 1 1-7 0Zm7-5h2.57a2 2 0 0 1 1.995 1.857l.856 12a2 2 0 0 1-1.994 2.143H5.074a2 2 0 0 1-1.996-2.143l.858-12A2 2 0 0 1 5.93 6.5h2.568v-1a3.5 3.5 0 0 1 7 0v1Z"/></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="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10v-2a8 8 0 1 1 8-8h2c0-5.523-4.477-10-10-10Zm0 5a5 5 0 0 0 0 10v-2a3 3 0 1 1 3-3h2a5 5 0 0 0-5-5Zm.707 4.293L17.414 16H20v2h-2v2h-2v-2.585l-4.707-4.708 1.414-1.414Z"/></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 19v-2a2 2 0 0 1 2-2h7v2H4v2h16v-4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2ZM15.476 4a5.46 5.46 0 0 1 4.733 2.724l.188.345v.003c.803 1.632.82 3.482-.045 5.055l-.001-.001c-.366.675-1.273 1.896-2.043 2.899a109.54 109.54 0 0 1-1.599 2.028l-.448.567-1.554.019-.473-.569-.005-.007c-.15-.184-.896-1.1-1.68-2.119-.756-.982-1.636-2.175-1.98-2.868-.643-1.291-.741-2.824-.293-4.223l.002-.006c.461-1.406 1.41-2.57 2.726-3.241A5.312 5.312 0 0 1 15.476 4Zm0 2c-.547 0-1.06.126-1.552.38l-.007.004c-.816.415-1.43 1.145-1.738 2.086a3.68 3.68 0 0 0 .11 2.563l.07.154c.24.481.981 1.507 1.775 2.539a93.933 93.933 0 0 0 1.329 1.682c.293-.366.764-.958 1.259-1.602.806-1.05 1.602-2.135 1.873-2.636l.005-.008c.524-.953.542-2.11.002-3.207A3.47 3.47 0 0 0 15.476 6ZM17.5 9.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"/></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="M9.45 7.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm-2 0a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm4.5 5.5a7.077 7.077 0 0 0-7.042 6.373L4.755 20.9l1.99.2.153-1.528A5.077 5.077 0 0 1 11.95 15v-2Zm6.3 0A3.75 3.75 0 0 0 22 16.75v1.5A3.75 3.75 0 0 0 18.25 22h-1.5A3.75 3.75 0 0 0 13 18.25v-1.5A3.75 3.75 0 0 0 16.75 13h1.5Z"/></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="M19 12a2 2 0 0 0-2-2H7a2 2 0 1 0 0 4h10a2 2 0 0 0 2-2Zm2 0a4 4 0 0 1-4 4H7a4 4 0 0 1 0-8h10a4 4 0 0 1 4 4Zm-3 7.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5Zm2 0a2.5 2.5 0 0 1-2.5 2.5h-5a2.5 2.5 0 0 1 0-5h5a2.5 2.5 0 0 1 2.5 2.5Zm-13 0a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Zm2 0A2.5 2.5 0 0 1 6.5 22h-1a2.5 2.5 0 0 1 0-5h1A2.5 2.5 0 0 1 9 19.5Zm5-15a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5Zm2 0A2.5 2.5 0 0 1 13.5 7h-3a2.5 2.5 0 0 1 0-5h3A2.5 2.5 0 0 1 16 4.5Z"/></svg>
|