@mirohq/design-system-icons 0.26.1 → 0.27.1-themes.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.
- package/dist/main.js +153 -32
- package/dist/main.js.map +1 -1
- package/dist/module.js +151 -33
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +129 -111
- package/package.json +4 -4
- package/react/arrow-elbow-down-right.tsx +11 -4
- package/react/diagram-card-large-2.tsx +4 -4
- package/react/diagram-card-large-3.tsx +4 -4
- package/react/diagram-card-large-4.tsx +4 -4
- package/react/diagram-card-small-2.tsx +2 -2
- package/react/diagram-card-small-3.tsx +2 -2
- package/react/indent-left.tsx +42 -0
- package/react/indent-right.tsx +42 -0
- package/react/index.ts +3 -0
- package/react/magnifying-glass-lightning.tsx +8 -7
- package/react/text-align-left.tsx +1 -1
- package/react/text-align-right.tsx +38 -0
- package/svg/24/arrow-elbow-down-right.svg +1 -1
- package/svg/24/diagram-card-large-2.svg +1 -1
- package/svg/24/diagram-card-large-3.svg +1 -1
- package/svg/24/diagram-card-large-4.svg +1 -1
- package/svg/24/diagram-card-small-2.svg +1 -1
- package/svg/24/diagram-card-small-3.svg +1 -1
- package/svg/24/indent-left.svg +2 -0
- package/svg/24/indent-right.svg +2 -0
- package/svg/24/magnifying-glass-lightning.svg +1 -1
- package/svg/24/text-align-left.svg +1 -1
- package/svg/24/text-align-right.svg +2 -0
- package/svg/meta.json +26 -0
package/react/index.ts
CHANGED
|
@@ -169,6 +169,8 @@ export { IconHighlighterUnderline } from './highlighter-underline'
|
|
|
169
169
|
export { IconHighlighter } from './highlighter'
|
|
170
170
|
export { IconHouse } from './house'
|
|
171
171
|
export { IconImage } from './image'
|
|
172
|
+
export { IconIndentLeft } from './indent-left'
|
|
173
|
+
export { IconIndentRight } from './indent-right'
|
|
172
174
|
export { IconInformationMarkCircle } from './information-mark-circle'
|
|
173
175
|
export { IconKanban } from './kanban'
|
|
174
176
|
export { IconKey } from './key'
|
|
@@ -347,6 +349,7 @@ export { IconTag } from './tag'
|
|
|
347
349
|
export { IconTextAUnderline } from './text-a-underline'
|
|
348
350
|
export { IconTextAlignCenter } from './text-align-center'
|
|
349
351
|
export { IconTextAlignLeft } from './text-align-left'
|
|
352
|
+
export { IconTextAlignRight } from './text-align-right'
|
|
350
353
|
export { IconTextBBoldItalicUnderlined } from './text-b-bold-italic-underlined'
|
|
351
354
|
export { IconTextBBold } from './text-b-bold'
|
|
352
355
|
export { IconTextCursorEyeOpen } from './text-cursor-eye-open'
|
|
@@ -20,13 +20,14 @@ export const IconMagnifyingGlassLightning: IconComponentType = forwardRef(
|
|
|
20
20
|
fill: 'none',
|
|
21
21
|
ref: forwardRef,
|
|
22
22
|
},
|
|
23
|
-
<g
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
/>
|
|
23
|
+
<g
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
27
|
+
clipPath='url(#clip0_3866_343)'
|
|
28
|
+
>
|
|
29
|
+
<path d='M15.5989 15.706c1.3728-1.3453 2.2246-3.2202 2.2246-5.2941 0-.4828-.0461-.9548-.1343-1.4118m-2.0903 6.7059c-1.3368 1.31-3.1676 2.1176-5.1871 2.1176-4.0934 0-7.4118-3.3183-7.4118-7.4117 0-2.8631 1.6234-5.347 4-6.5816m8.5989 11.8757 5.4011 5.2941' />
|
|
30
|
+
<path d='m14 2-3 4h3l-3 4' />
|
|
30
31
|
</g>,
|
|
31
32
|
<defs>
|
|
32
33
|
<clipPath id='clip0_3866_343'>
|
|
@@ -0,0 +1,38 @@
|
|
|
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
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconTextAlignRight: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
28
|
+
d='M5 6h14m-8 4h8m-14 4h14m-8 4h8'
|
|
29
|
+
/>,
|
|
30
|
+
<path
|
|
31
|
+
stroke='currentColor'
|
|
32
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
33
|
+
d='M11.8097 12.3875v.0001'
|
|
34
|
+
/>
|
|
35
|
+
)
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
IconTextAlignRight[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="M4 15h-1c0 .5523.4477 1 1 1v-1Zm17 0 .7071.7071.7071-.7071-.7071-.7071-.7071.7071Zm-3.2929-4.7071c-.3905-.3905-1.0237-.3905-1.4142 0-.3905.3905-.3905 1.0237 0 1.4142l1.4142-1.4142Zm-1.4142 8c-.3905.3905-.3905 1.0237 0 1.4142.3905.3905 1.0237.3905 1.4142 0l-1.4142-1.4142Zm-11.2929-13.2929c0-.5523-.4477-1-1-1s-1 .4477-1 1h2Zm-1 11h17v-2h-17v2Zm17.7071-1.7071-4-4-1.4142 1.4142 4 4 1.4142-1.4142Zm-1.4142 0-4 4 1.4142 1.4142 4-4-1.4142-1.4142Zm-15.2929.7071v-10h-2v10h2Z"/></svg>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#clip0_4109_692)"><path fill="currentColor" d="M4 15h-1c0 .5523.4477 1 1 1v-1Zm17 0 .7071.7071.7071-.7071-.7071-.7071-.7071.7071Zm-3.2929-4.7071c-.3905-.3905-1.0237-.3905-1.4142 0-.3905.3905-.3905 1.0237 0 1.4142l1.4142-1.4142Zm-1.4142 8c-.3905.3905-.3905 1.0237 0 1.4142.3905.3905 1.0237.3905 1.4142 0l-1.4142-1.4142Zm-11.2929-13.2929c0-.5523-.4477-1-1-1s-1 .4477-1 1h2Zm-1 11h17v-2h-17v2Zm17.7071-1.7071-4-4-1.4142 1.4142 4 4 1.4142-1.4142Zm-1.4142 0-4 4 1.4142 1.4142 4-4-1.4142-1.4142Zm-15.2929.7071v-10h-2v10h2Z"/></g><defs><clipPath id="clip0_4109_692"><path fill="none" d="M0 0h24v24h-24z"/></clipPath></defs></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
|
|
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 8c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM7 18c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1ZM10 19c.5523 0 1-.4477 1-1s-.4477-1-1-1-1 .4477-1 1 .4477 1 1 1ZM15 18c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1ZM18 19c.5523 0 1-.4477 1-1s-.4477-1-1-1-1 .4477-1 1 .4477 1 1 1Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 7h6m-6 4h6m-15-8h18v18h-18v-18Z"/></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
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M8 18c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1ZM13 18c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1ZM17 19c.5523 0 1-.4477 1-1s-.4477-1-1-1-1 .4477-1 1 .4477 1 1 1Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 7h7m-7 4h7m-11 4v6h18v-6m-18 0v-12h18v12m-18 0h18"/></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
|
|
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 10c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2ZM7 19c.5523 0 1-.4477 1-1s-.4477-1-1-1-1 .4477-1 1 .4477 1 1 1ZM12 19c.5523 0 1-.4477 1-1s-.4477-1-1-1-1 .4477-1 1 .4477 1 1 1ZM18 18c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 7h6m-6 4h6m-15 4v6h18v-6m-18 0v-12h18v12m-18 0h18"/></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-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 12h-6.5m-8.5-5h18v10h-18v-10Z"
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><circle cx="7" cy="12" r="2" fill="currentColor"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 12h-6.5m-8.5-5h18v10h-18v-10Z"/></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-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 11h4m-7-4h18v10h-18v-10Z"
|
|
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 7h8v10h-8z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 11h4m-7-4h18v10h-18v-10Z"/></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 14.5683v-5.1366c0-.3838-.464-.576-.7355-.3046l-2.5683 2.5682a.431.431 0 0 0 0 .6094l2.5683 2.5682c.2714.2715.7355.0792.7355-.3046Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 6h14m-8 6h8m-14 6h14"/><path stroke="currentColor" stroke-width="2" d="M11.8097 12.3875v.0001"/></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="M5 6h14m-8 6h8m-14 6h14"/><path stroke="currentColor" stroke-width="2" d="M11.8097 12.3875v.0001"/><path fill="currentColor" d="M4.04 14.5683v-5.1366c0-.3838.4641-.576.7355-.3046l2.5683 2.5682a.431.431 0 0 1 0 .6094l-2.5683 2.5682c-.2714.2715-.7355.0792-.7355-.3046Z"/></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"><g
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g stroke="currentColor" stroke-linecap="round" stroke-width="2" clip-path="url(#clip0_3866_343)"><path d="M15.5989 15.706c1.3728-1.3453 2.2246-3.2202 2.2246-5.2941 0-.4828-.0461-.9548-.1343-1.4118m-2.0903 6.7059c-1.3368 1.31-3.1676 2.1176-5.1871 2.1176-4.0934 0-7.4118-3.3183-7.4118-7.4117 0-2.8631 1.6234-5.347 4-6.5816m8.5989 11.8757 5.4011 5.2941"/><path d="m14 2-3 4h3l-3 4"/></g><defs><clipPath id="clip0_3866_343"><path fill="none" d="M0 0h24v24h-24z"/></clipPath></defs></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"><g stroke="currentColor" stroke-width="2" clip-path="url(#clip0_1734_328)"><path stroke-linecap="round" stroke-linejoin="round" d="M5 6h14m-14
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g stroke="currentColor" stroke-width="2" clip-path="url(#clip0_1734_328)"><path stroke-linecap="round" stroke-linejoin="round" d="M5 6h14m-14 4h8m-8 4h14m-14 4h8"/><path d="M11.8097 12.3875v.0001"/></g><defs><clipPath id="clip0_1734_328"><path fill="none" d="M0 0h24v24h-24z"/></clipPath></defs></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="M5 6h14m-8 4h8m-14 4h14m-8 4h8"/><path stroke="currentColor" stroke-width="2" d="M11.8097 12.3875v.0001"/></svg>
|
package/svg/meta.json
CHANGED
|
@@ -3252,5 +3252,31 @@
|
|
|
3252
3252
|
"right",
|
|
3253
3253
|
"subpage"
|
|
3254
3254
|
]
|
|
3255
|
+
},
|
|
3256
|
+
"indent-left": {
|
|
3257
|
+
"tags": [
|
|
3258
|
+
"indent left",
|
|
3259
|
+
"indent",
|
|
3260
|
+
"text",
|
|
3261
|
+
"left",
|
|
3262
|
+
"list"
|
|
3263
|
+
]
|
|
3264
|
+
},
|
|
3265
|
+
"indent-right": {
|
|
3266
|
+
"tags": [
|
|
3267
|
+
"indent right",
|
|
3268
|
+
"indent",
|
|
3269
|
+
"text",
|
|
3270
|
+
"right",
|
|
3271
|
+
"list"
|
|
3272
|
+
]
|
|
3273
|
+
},
|
|
3274
|
+
"text-align-right": {
|
|
3275
|
+
"tags": [
|
|
3276
|
+
"text align right",
|
|
3277
|
+
"text",
|
|
3278
|
+
"align",
|
|
3279
|
+
"right"
|
|
3280
|
+
]
|
|
3255
3281
|
}
|
|
3256
3282
|
}
|