@fibery/ui-kit 1.29.1 → 1.29.4
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/package.json +4 -4
- package/src/actions-menu/actions-menu-confirmation.tsx +70 -0
- package/src/actions-menu/actions-menu-item.tsx +3 -1
- package/src/actions-menu/actions-menu-sub-command-menu.tsx +104 -141
- package/src/actions-menu/actions-menu-sub-menu.tsx +3 -1
- package/src/actions-menu/actions-menu.tsx +6 -1
- package/src/actions-menu/context-actions-menu.tsx +5 -1
- package/src/actions-menu/contexts/actions-menu-context.tsx +6 -2
- package/src/button/button-base.tsx +1 -1
- package/src/button/button.tsx +1 -1
- package/src/design-system.ts +83 -25
- package/src/dropdown-menu/index.tsx +7 -2
- package/src/emoji-picker/primitives/footer.tsx +1 -1
- package/src/icons/ast/Abort.ts +8 -0
- package/src/icons/ast/AiAvatar.ts +1 -1
- package/src/icons/ast/Database.ts +1 -1
- package/src/icons/ast/DatabaseStroke.ts +8 -0
- package/src/icons/ast/ExtensionComments.ts +1 -1
- package/src/icons/ast/FieldUnit.ts +8 -0
- package/src/icons/ast/InfoCircle.ts +8 -0
- package/src/icons/ast/IntegrationsIntegrationDiscourseColor.ts +8 -0
- package/src/icons/ast/IntegrationsIntegrationIntercomColor.ts +8 -0
- package/src/icons/ast/IntegrationsIntegrationSlackColor.ts +8 -0
- package/src/icons/ast/IntegrationsIntegrationZendeskColor.ts +8 -0
- package/src/icons/ast/Key.ts +8 -0
- package/src/icons/ast/MoveBottom.ts +8 -0
- package/src/icons/ast/MoveLeft.ts +8 -0
- package/src/icons/ast/MoveRight.ts +8 -0
- package/src/icons/ast/MoveTop.ts +8 -0
- package/src/icons/ast/Pin.ts +8 -0
- package/src/icons/ast/RicheditorCommentCreate.ts +1 -1
- package/src/icons/ast/SendArrow.ts +8 -0
- package/src/icons/ast/UnitsAvatar.ts +8 -0
- package/src/icons/ast/UnitsCollection.ts +8 -0
- package/src/icons/ast/UnitsCounter.ts +8 -0
- package/src/icons/ast/UnitsDbBadgeAbbr.ts +8 -0
- package/src/icons/ast/UnitsDbBadgeFull.ts +8 -0
- package/src/icons/ast/UnitsDbIcon.ts +8 -0
- package/src/icons/ast/UnitsField.ts +8 -0
- package/src/icons/ast/UnitsInput.ts +8 -0
- package/src/icons/ast/UnitsProgressBar.ts +8 -0
- package/src/icons/ast/UnitsRichText.ts +8 -0
- package/src/icons/ast/UnitsSnippet.ts +8 -0
- package/src/icons/ast/index.tsx +26 -0
- package/src/icons/react/Abort.tsx +12 -0
- package/src/icons/react/DatabaseStroke.tsx +12 -0
- package/src/icons/react/FieldUnit.tsx +12 -0
- package/src/icons/react/InfoCircle.tsx +12 -0
- package/src/icons/react/IntegrationsIntegrationDiscourseColor.tsx +12 -0
- package/src/icons/react/IntegrationsIntegrationIntercomColor.tsx +12 -0
- package/src/icons/react/IntegrationsIntegrationSlackColor.tsx +12 -0
- package/src/icons/react/IntegrationsIntegrationZendeskColor.tsx +12 -0
- package/src/icons/react/Key.tsx +12 -0
- package/src/icons/react/MoveBottom.tsx +12 -0
- package/src/icons/react/MoveLeft.tsx +12 -0
- package/src/icons/react/MoveRight.tsx +12 -0
- package/src/icons/react/MoveTop.tsx +12 -0
- package/src/icons/react/Pin.tsx +12 -0
- package/src/icons/react/SendArrow.tsx +12 -0
- package/src/icons/react/UnitsAvatar.tsx +12 -0
- package/src/icons/react/UnitsCollection.tsx +12 -0
- package/src/icons/react/UnitsCounter.tsx +12 -0
- package/src/icons/react/UnitsDbBadgeAbbr.tsx +12 -0
- package/src/icons/react/UnitsDbBadgeFull.tsx +12 -0
- package/src/icons/react/UnitsDbIcon.tsx +12 -0
- package/src/icons/react/UnitsField.tsx +12 -0
- package/src/icons/react/UnitsInput.tsx +12 -0
- package/src/icons/react/UnitsProgressBar.tsx +12 -0
- package/src/icons/react/UnitsRichText.tsx +12 -0
- package/src/icons/react/UnitsSnippet.tsx +12 -0
- package/src/icons/react/index.tsx +26 -0
- package/src/item.tsx +1 -1
- package/src/select/custom-select-partials/menu.tsx +1 -1
- package/src/select/select-in-popover.tsx +58 -11
- package/src/theme-settings.ts +10 -8
- package/src/toggle.tsx +3 -1
- package/src/tooltip.tsx +4 -2
package/src/design-system.ts
CHANGED
|
@@ -105,7 +105,7 @@ const brandColors = {
|
|
|
105
105
|
} as const;
|
|
106
106
|
|
|
107
107
|
export const getDarkenColor = _.memoize((color: string): string => {
|
|
108
|
-
return makeChromaColor(color).darken(0.
|
|
108
|
+
return makeChromaColor(color).darken(0.5).desaturate(0.8).css();
|
|
109
109
|
});
|
|
110
110
|
|
|
111
111
|
export const themeColors = {
|
|
@@ -114,17 +114,46 @@ export const themeColors = {
|
|
|
114
114
|
stateColors: [stateColors, stateColors],
|
|
115
115
|
colorAI: ["hsla(271, 57%, 61%, 1)", "hsla(272, 43%, 50%, 1)"],
|
|
116
116
|
colorBgAI: ["hsla(271, 57%, 61%, 0.1)", "hsla(272, 43%, 50%, 0.1)"],
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
117
|
+
colorSubtleBgAI: ["hsla(271, 57%, 61%, 0.05)", "hsla(272, 43%, 50%, 0.1)"],
|
|
118
|
+
|
|
119
|
+
// Shadows and effects / Elevation
|
|
120
|
+
shadow100: [
|
|
121
|
+
`
|
|
122
|
+
0px 1px 4px 0px ${getOpacities(slate.slate12).opacity5}
|
|
123
|
+
`,
|
|
124
|
+
`0px 1px 4px 0px ${getOpacities(slate.slate12).opacity10}`,
|
|
125
|
+
],
|
|
126
|
+
shadow200: [
|
|
127
|
+
`
|
|
128
|
+
0px 2px 6px 0px ${getOpacities(slate.slate12).opacity5}
|
|
129
|
+
`,
|
|
130
|
+
`0px 2px 6px 0px ${getOpacities(slate.slate12).opacity10}`,
|
|
131
|
+
],
|
|
132
|
+
shadow300: [
|
|
133
|
+
`
|
|
134
|
+
0px 3px 6px -3px ${getOpacities(slate.slate12).opacity10}, 0px 8px 20px -4px ${
|
|
135
|
+
getOpacities(slate.slate12).opacity15
|
|
136
|
+
}
|
|
137
|
+
`,
|
|
138
|
+
`0px 3px 6px -3px ${getOpacities(slate.slate12).opacity10}, 0px 8px 20px -4px ${
|
|
139
|
+
getOpacities(slate.slate12).opacity15
|
|
121
140
|
}`,
|
|
122
141
|
],
|
|
142
|
+
actionMenuShadow: [
|
|
143
|
+
`0px 0px 2px 0px ${getOpacities(slate.slate11).opacity30}, 0px 4px 6px 0px ${
|
|
144
|
+
getOpacities(slate.slate11).opacity5
|
|
145
|
+
}, 0px 10px 26px 0px ${getOpacities(slate.slate11).opacity15}`,
|
|
146
|
+
`0px 0px 0px 1px ${getOpacities(slateDark.slate6).opacity100}, 0px 4px 6px 0px ${
|
|
147
|
+
getOpacities(slateDark.slate1).opacity5
|
|
148
|
+
}, 0px 10px 26px 0px ${getOpacities(slateDark.slate1).opacity15}`,
|
|
149
|
+
],
|
|
123
150
|
shadowPopup: [
|
|
124
|
-
`
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
151
|
+
`0px 0px 2px 0px ${getOpacities(slate.slate11).opacity30}, 0px 4px 6px 0px ${
|
|
152
|
+
getOpacities(slate.slate11).opacity5
|
|
153
|
+
}, 0px 10px 26px 0px ${getOpacities(slate.slate11).opacity15}`,
|
|
154
|
+
`0px 0px 0px 1px ${getOpacities(slateDark.slate6).opacity100}, 0px 4px 6px 0px ${
|
|
155
|
+
getOpacities(slateDark.slate1).opacity5
|
|
156
|
+
}, 0px 10px 26px 0px ${getOpacities(slateDark.slate1).opacity15}`,
|
|
128
157
|
],
|
|
129
158
|
shadowModal: [
|
|
130
159
|
`${getOpacities(slate.slate10).opacity20} 0px 16px 70px`,
|
|
@@ -142,25 +171,28 @@ export const themeColors = {
|
|
|
142
171
|
`blur(24px) saturate(190%) contrast(50%) brightness(130%)`,
|
|
143
172
|
`blur(24px) saturate(180%) contrast(60%) brightness(70%)`,
|
|
144
173
|
],
|
|
145
|
-
|
|
174
|
+
|
|
175
|
+
// Rubbish dump
|
|
176
|
+
primaryBlue: [indigo.indigo9, indigoDark.indigo9],
|
|
146
177
|
whiteColor: [whiteA.whiteA0, whiteA.whiteA0],
|
|
147
178
|
blackColor: [blackA.blackA0, blackA.blackA0],
|
|
148
|
-
mainBg: [slate.
|
|
179
|
+
mainBg: [slate.slate3, slateDark.slate1],
|
|
149
180
|
panelBg: [whiteA.whiteA0, slateDark.slate2],
|
|
150
181
|
panelContentBg: [slate.slate2, slateDark.slate2],
|
|
182
|
+
colorBgRelationContainer: [slate.slate2, slateDark.slate1],
|
|
151
183
|
pageBg: [whiteA.whiteA0, slateDark.slate1],
|
|
152
184
|
pageContentBg: [whiteA.whiteA0, slateDark.slate2],
|
|
153
185
|
colorBgPopup: [whiteA.whiteA0, slateDark.slate4],
|
|
154
186
|
colorBgSidebar: [whiteA.whiteA0, slateDark.slate3],
|
|
155
|
-
menuBg: [slate.
|
|
156
|
-
menuTextColor: [
|
|
157
|
-
menuItemHoverColor: [slate.
|
|
187
|
+
menuBg: [slate.slate3, slateDark.slate1],
|
|
188
|
+
menuTextColor: [slateDark.slate5, slate.slate8],
|
|
189
|
+
menuItemHoverColor: [slate.slate5, slateDark.slate6],
|
|
158
190
|
menuSelectedTextColor: [slate.slate2, slate.slate2],
|
|
159
191
|
menuFooterColor: [getOpacities(whiteA.whiteA0).opacity20, getOpacities(slateDark.slate3).opacity40],
|
|
160
192
|
menuFooterHoverColor: [getOpacities(whiteA.whiteA0).opacity60, slateDark.slate4],
|
|
161
193
|
menuIconColor: [getOpacities(slate.slate11).opacity90, getOpacities(slateDark.slate11).opacity90],
|
|
162
194
|
menuSelectedIconColor: [getOpacities(slate.slate1).opacity90, getOpacities(slate.slate1).opacity90],
|
|
163
|
-
textColor: [slateDark.
|
|
195
|
+
textColor: [slateDark.slate5, slate.slate6],
|
|
164
196
|
textSelectionColor: [getOpacities(blue.blue10).opacity20, getOpacities(blueDark.blue10).opacity40],
|
|
165
197
|
accentTextColor: [slate.slate10, slateDark.slate10],
|
|
166
198
|
disabledTextColor: [slate.slate9, slateDark.slate9],
|
|
@@ -179,6 +211,8 @@ export const themeColors = {
|
|
|
179
211
|
codeColor: [red.red9, red.red8],
|
|
180
212
|
codeBgColor: [slate.slate3, slateDark.slate4],
|
|
181
213
|
codeBlockBgColor: [slate.slate3, slateDark.slate4],
|
|
214
|
+
|
|
215
|
+
// Entity
|
|
182
216
|
entityNodeColor: [slateDark.slate3, slate.slate8],
|
|
183
217
|
entityNodeBorder: [
|
|
184
218
|
`1px solid ${getOpacities(slateDark.slate3).opacity30}`,
|
|
@@ -195,6 +229,8 @@ export const themeColors = {
|
|
|
195
229
|
`1px solid ${getOpacities(slate.slate8).opacity50}`,
|
|
196
230
|
`1px solid ${getOpacities(slateDark.slate10).opacity20}`,
|
|
197
231
|
],
|
|
232
|
+
|
|
233
|
+
// Input
|
|
198
234
|
inputBgColor: [whiteA.whiteA0, slateDark.slate2],
|
|
199
235
|
inputDisabledBgColor: [getOpacities(slate.slate6).opacity30, getOpacities(slateDark.slate6).opacity30],
|
|
200
236
|
inputDisabledBorderColor: [
|
|
@@ -229,10 +265,12 @@ export const themeColors = {
|
|
|
229
265
|
`0 0 0 3px ${getOpacities(red.red11).opacity25}`,
|
|
230
266
|
`0 0 0 3px ${getOpacities(red.red7).opacity25}`,
|
|
231
267
|
],
|
|
232
|
-
buttonPrimaryColor: [indigo.
|
|
268
|
+
buttonPrimaryColor: [indigo.indigo9, indigoDark.indigo9],
|
|
233
269
|
buttonColor: [slate.slate10, slateDark.slate10],
|
|
234
270
|
buttonPrimaryTextColor: [slate.slate2, slate.slate6],
|
|
235
271
|
checkboxColor: [slate.slate10, slateDark.slate10],
|
|
272
|
+
|
|
273
|
+
// Actions menu
|
|
236
274
|
colorBgActionsMenu: [getOpacities(whiteA.whiteA0).opacity85, getOpacities(slateDark.slate4).opacity85],
|
|
237
275
|
colorBgActionsMenuItemHover: [getOpacities(slate.slate11).opacity10, getOpacities(slateDark.slate11).opacity10],
|
|
238
276
|
colorBgActionsMenuItemSelected: [getOpacities(indigo.indigo4).opacity80, getOpacities(indigoDark.indigo4).opacity80],
|
|
@@ -262,13 +300,15 @@ export const themeColors = {
|
|
|
262
300
|
iconColor: [slate.slate10, slateDark.slate10],
|
|
263
301
|
appIconColor: [getOpacities(slate.slate2).opacity90, getOpacities(slate.slate2).opacity70],
|
|
264
302
|
appIconBgColor: [getOpacities(slate.slate1).opacity90, getOpacities(slate.slate2).opacity50],
|
|
265
|
-
mentionBgColor: [slate.
|
|
303
|
+
mentionBgColor: [getOpacities(slate.slate7).opacity30, getOpacities(slateDark.slate7).opacity40],
|
|
266
304
|
colorBgSelectMenu: [slate.slate1, slateDark.slate3],
|
|
267
305
|
shadowSelectMenu: [
|
|
268
|
-
`
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
}
|
|
306
|
+
`0px 0px 2px 0px ${getOpacities(slate.slate11).opacity30}, 0px 4px 6px 0px ${
|
|
307
|
+
getOpacities(slate.slate11).opacity5
|
|
308
|
+
}, 0px 10px 26px 0px ${getOpacities(slate.slate11).opacity15}`,
|
|
309
|
+
`0px 0px 0px 1px ${getOpacities(slateDark.slate6).opacity100}, 0px 4px 6px 0px ${
|
|
310
|
+
getOpacities(slateDark.slate1).opacity5
|
|
311
|
+
}, 0px 10px 26px 0px ${getOpacities(slateDark.slate1).opacity15}`,
|
|
272
312
|
],
|
|
273
313
|
colorBgListItemGeneral: [transparent, transparent],
|
|
274
314
|
colorBgListItemGeneralHover: [slate.slate3, slateDark.slate4],
|
|
@@ -366,14 +406,14 @@ export const themeColors = {
|
|
|
366
406
|
opacityMenuItemDragged: [`${opacity.opacity40}`, `${opacity.opacity40}`],
|
|
367
407
|
colorBgMenuItemSelectedDragged: [indigo.indigo6, indigoDark.indigo6],
|
|
368
408
|
// Default
|
|
369
|
-
colorTextMenuItem: [
|
|
409
|
+
colorTextMenuItem: [slateDark.slate5, getOpacities(slateDark.slate12).opacity90],
|
|
370
410
|
colorBgMenuItem: [transparent, transparent],
|
|
371
411
|
// :hover
|
|
372
|
-
colorBgMenuItemHover: [slate.
|
|
412
|
+
colorBgMenuItemHover: [slate.slate5, slateDark.slate4],
|
|
373
413
|
// :focus
|
|
374
414
|
colorBgMenuItemFocus: [slate.slate6, slateDark.slate6],
|
|
375
415
|
// Selected
|
|
376
|
-
colorBgMenuItemSelected: [indigo.
|
|
416
|
+
colorBgMenuItemSelected: [indigo.indigo5, indigoDark.indigo4],
|
|
377
417
|
// :hover
|
|
378
418
|
colorBgMenuItemSelectedHover: [indigo.indigo6, indigoDark.indigo6],
|
|
379
419
|
// :focus, :focus:hover
|
|
@@ -385,8 +425,12 @@ export const themeColors = {
|
|
|
385
425
|
colorBgFieldEditorLinkEqualSign: [slate.slate6, slateDark.slate2],
|
|
386
426
|
allowedDropColor: [getOpacities(slate.slate3).opacity80, getOpacities(slateDark.slate3).opacity80],
|
|
387
427
|
relationViewBgColor: [slate.slate2, slateDark.slate3],
|
|
428
|
+
|
|
429
|
+
// Unit
|
|
388
430
|
unitBg: [slate.slate3, slateDark.slate6],
|
|
389
431
|
unitBgHover: [slate.slate4, slateDark.slate7],
|
|
432
|
+
|
|
433
|
+
// Badges
|
|
390
434
|
colorBgBadgeSuccess: [teal.teal5, tealDark.teal5],
|
|
391
435
|
colorBgBadgeWarning: [yellow.yellow5, yellowDark.yellow5],
|
|
392
436
|
colorBgBadgeError: [red.red5, redDark.red5],
|
|
@@ -469,7 +513,10 @@ export const themeColors = {
|
|
|
469
513
|
progressBarBg: [getOpacities(indigo.indigo9).opacity25, getOpacities(indigoDark.indigo10).opacity25],
|
|
470
514
|
searchFiltersBg: [slate.slate1, slateDark.slate2],
|
|
471
515
|
colorPickerSwatchBorder: [blackA.blackA7, blackA.blackA7],
|
|
516
|
+
colorBorderRichTextMedia: [blackA.blackA7, blackA.blackA7],
|
|
472
517
|
richTextTableBorder: [blackA.blackA5, whiteA.whiteA7],
|
|
518
|
+
|
|
519
|
+
// Grid
|
|
473
520
|
gridHeaderBgColor: [slate.slate2, slateDark.slate3],
|
|
474
521
|
gridHeaderHoverBgColor: [slate.slate3, slateDark.slate4],
|
|
475
522
|
gridHeaderTextColor: [slate.slate10, slateDark.slate11],
|
|
@@ -483,6 +530,11 @@ export const themeColors = {
|
|
|
483
530
|
gridSelectedPinnedCellBorderColor: [indigo.indigo7, indigoDark.indigo7],
|
|
484
531
|
gridDisabledSelectedCellBgColor: [indigo.indigo4, indigoDark.indigo5],
|
|
485
532
|
gridActiveCellBorderColor: [indigo.indigo8, indigoDark.indigo9],
|
|
533
|
+
colorBorderButtonOutlineAccentDefault: [indigo.indigo8, indigoDark.indigo8],
|
|
534
|
+
colorBorderButtonOutlineNeutralDefault: [slate.slate8, slateDark.slate8],
|
|
535
|
+
colorBgButtonOutlineAccentDefault: [whiteA.whiteA0, slateDark.slate1],
|
|
536
|
+
colorBgButtonOutlineAccentHover: [indigo.indigo3, indigoDark.indigo8],
|
|
537
|
+
colorTextButtonOutlineAccent: [indigo.indigo11, indigoDark.indigo11],
|
|
486
538
|
colorBgReactionsDefault: [slate.slate3, slateDark.slate6],
|
|
487
539
|
colorBgReactionsHover: [whiteA.whiteA0, slateDark.slate2],
|
|
488
540
|
colorBorderReactionsHover: [slate.slate8, slateDark.slate9],
|
|
@@ -494,6 +546,10 @@ export const themeColors = {
|
|
|
494
546
|
colorBgToastDefault: [slate.slate1, slateDark.slate1],
|
|
495
547
|
colorBgDbTabHover: [slate.slate3, slateDark.slate4],
|
|
496
548
|
colorBgDbTabFocus: [slate.slate6, slateDark.slate6],
|
|
549
|
+
|
|
550
|
+
// Chat
|
|
551
|
+
colorBgMessageContainer: [slate.slate3, slateDark.slate6],
|
|
552
|
+
colorBgMessageContainerHover: [slate.slate2, slateDark.slate3],
|
|
497
553
|
} as const;
|
|
498
554
|
|
|
499
555
|
type ThemeDefs = typeof themeColors;
|
|
@@ -757,7 +813,7 @@ export const layout = {
|
|
|
757
813
|
menuDefaultWidth: 243,
|
|
758
814
|
desktopToolbarHeight: 32,
|
|
759
815
|
desktopMenuMinWidth: 160,
|
|
760
|
-
menuMinWidth:
|
|
816
|
+
menuMinWidth: 54, //TODO: make dependency to itemHeight
|
|
761
817
|
menuMaxWidth: 480,
|
|
762
818
|
menuItemMinWidth: 80,
|
|
763
819
|
menuGroupHeaderIndent: 28, // I'm ok
|
|
@@ -805,6 +861,8 @@ export const border = {
|
|
|
805
861
|
radius8: 8,
|
|
806
862
|
radius10: 10,
|
|
807
863
|
radius12: 12,
|
|
864
|
+
radius16: 16,
|
|
865
|
+
radius9999: 9999,
|
|
808
866
|
} as const;
|
|
809
867
|
|
|
810
868
|
export const lineHeight = {
|
|
@@ -134,10 +134,15 @@ export const Content = forwardRef<HTMLDivElement, ContentProps>(function Dropdow
|
|
|
134
134
|
export const Sub = DropdownMenuPrimitive.Sub;
|
|
135
135
|
|
|
136
136
|
export const SubContent = forwardRef<HTMLDivElement, DropdownMenuPrimitive.DropdownMenuSubContentProps>(
|
|
137
|
-
function DropdownMenuSubContent({className, ...rest}, ref) {
|
|
137
|
+
function DropdownMenuSubContent({className, collisionPadding = space.s12, ...rest}, ref) {
|
|
138
138
|
return (
|
|
139
139
|
<DropdownMenuPrimitive.Portal>
|
|
140
|
-
<DropdownMenuPrimitive.SubContent
|
|
140
|
+
<DropdownMenuPrimitive.SubContent
|
|
141
|
+
ref={ref}
|
|
142
|
+
className={cx(dropdownMenuContentStyles, className)}
|
|
143
|
+
collisionPadding={collisionPadding}
|
|
144
|
+
{...rest}
|
|
145
|
+
/>
|
|
141
146
|
</DropdownMenuPrimitive.Portal>
|
|
142
147
|
);
|
|
143
148
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Abort: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M12.5 6h-5A1.5 1.5 0 0 0 6 7.5v5A1.5 1.5 0 0 0 7.5 14h5a1.5 1.5 0 0 0 1.5-1.5v-5A1.5 1.5 0 0 0 12.5 6Z"},"children":[]}],"metadata":""}]},"name":"abort"};
|
|
7
|
+
|
|
8
|
+
export default Abort;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const AiAvatar: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10
|
|
6
|
+
const AiAvatar: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10 3a.75.75 0 0 1 .7.483l1.312 3.442c.187.49.573.876 1.063 1.063l3.442 1.311a.75.75 0 0 1 0 1.402l-3.442 1.311c-.49.187-.876.573-1.063 1.063l-1.311 3.442a.75.75 0 0 1-1.402 0l-1.311-3.442a1.836 1.836 0 0 0-1.063-1.063l-3.442-1.311a.75.75 0 0 1 0-1.402l3.442-1.311c.49-.187.876-.573 1.063-1.063l1.311-3.442A.75.75 0 0 1 10 3Zm0 2.857-.61 1.602a3.336 3.336 0 0 1-1.93 1.93L5.856 10l1.602.61a3.336 3.336 0 0 1 1.93 1.93L10 14.143l.61-1.603a3.336 3.336 0 0 1 1.93-1.93l1.603-.61-1.603-.61a3.336 3.336 0 0 1-1.93-1.93L10 5.856Z"},"children":[]}],"metadata":""}]},"name":"ai-avatar"};
|
|
7
7
|
|
|
8
8
|
export default AiAvatar;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Database: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"
|
|
6
|
+
const Database: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M16 6.4C16 3.973 13.314 3 10 3S4 4.002 4 6.4c0 2.4 2.686 3.401 6 3.401s6-.971 6-3.4ZM4.104 9.27c-.068.24-.104.498-.104.774 0 2.399 2.686 3.4 6 3.4s6-.97 6-3.4a2.88 2.88 0 0 0-.1-.766 4.787 4.787 0 0 1-1.197.84c-1.289.648-2.972.898-4.703.898-1.735 0-3.418-.259-4.705-.911a4.83 4.83 0 0 1-1.19-.836Zm0 3.554c-.068.24-.104.499-.104.775C4 15.998 6.686 17 10 17s6-.972 6-3.4a2.88 2.88 0 0 0-.1-.767 4.786 4.786 0 0 1-1.197.84c-1.289.648-2.972.898-4.703.898-1.735 0-3.418-.259-4.705-.911a4.83 4.83 0 0 1-1.19-.836Z"},"children":[]}],"metadata":""}]},"name":"database"};
|
|
7
7
|
|
|
8
8
|
export default Database;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const DatabaseStroke: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.835 8.738c-.35-.17-.66-.37-.92-.603C4.454 7.725 4 7.045 4 6.401 4 4.002 6.686 3 10 3s6 .972 6 3.4c0 .65-.448 1.332-.91 1.746-.262.233-.572.433-.925.603-1.079.52-2.547.751-4.165.751-1.618 0-3.086-.239-4.165-.762ZM2.5 13.599c0 1.904 1.127 3.202 2.58 3.938 1.382.701 3.15.963 4.92.963 1.764 0 3.532-.253 4.917-.95 1.46-.735 2.583-2.036 2.583-3.95V6.4c0-1.914-1.122-3.215-2.583-3.95-1.385-.697-3.153-.95-4.917-.95-1.77 0-3.538.262-4.92.963C3.626 3.199 2.5 4.497 2.5 6.4v7.198Zm11.99.175c-1.258.573-2.852.797-4.49.797-1.64 0-3.235-.231-4.491-.808a4.978 4.978 0 0 1-1.405-.939A2.703 2.703 0 0 0 4 13.6c0 .454.096.857.274 1.213C5.038 16.341 7.312 17 10 17c2.687 0 4.961-.639 5.726-2.175.178-.359.274-.766.274-1.226a2.763 2.763 0 0 0-.1-.766 4.933 4.933 0 0 1-1.41.941Zm0-3.555c-1.258.573-2.852.797-4.49.797-1.64 0-3.235-.231-4.491-.808a4.973 4.973 0 0 1-1.405-.939 2.676 2.676 0 0 0-.078.38 2.993 2.993 0 0 0 .048 1.053c.085.362.531.84.795 1.083.26.242.574.45.93.626 1.082.536 2.565.78 4.201.78 1.636 0 3.119-.237 4.201-.769.358-.176.672-.384.934-.627.263-.244.706-.72.79-1.082a3.081 3.081 0 0 0 .051-1.052 2.735 2.735 0 0 0-.075-.383 4.934 4.934 0 0 1-1.41.941Z"},"children":[]}],"metadata":""}]},"name":"database-stroke"};
|
|
7
|
+
|
|
8
|
+
export default DatabaseStroke;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const ExtensionComments: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const ExtensionComments: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.25 7A.75.75 0 0 1 6 6.25h7.5a.75.75 0 0 1 0 1.5H6A.75.75 0 0 1 5.25 7ZM6 9.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5H6Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5a2.75 2.75 0 0 1 2.75-2.75h10.8A2.95 2.95 0 0 1 18.5 5.2v7.71a2.75 2.75 0 0 1-2.75 2.75h-.87v1.84a.75.75 0 0 1-1.131.646l-4.22-2.485H4.75A2.75 2.75 0 0 1 2 12.91V5Zm2.75-1.25c-.69 0-1.25.56-1.25 1.25v7.91c0 .691.56 1.25 1.25 1.25h4.983a.75.75 0 0 1 .38.104l3.266 1.924V14.91a.75.75 0 0 1 .75-.75h1.621c.69 0 1.25-.56 1.25-1.25V5.2c0-.8-.65-1.45-1.45-1.45H4.75Z"},"children":[]}],"metadata":""}]},"name":"extension-comments"};
|
|
7
7
|
|
|
8
8
|
export default ExtensionComments;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const FieldUnit: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 14A2.25 2.25 0 0 1 2 11.75v-3.5A2.25 2.25 0 0 1 4.25 6h11.5A2.25 2.25 0 0 1 18 8.25v3.5A2.25 2.25 0 0 1 15.75 14H4.25Zm0-1.5a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75H4.25ZM9.5 10a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5A.75.75 0 0 1 9.5 10ZM6.583 8.417a1.583 1.583 0 1 0 0 3.166 1.583 1.583 0 0 0 0-3.166Z"},"children":[]}],"metadata":""}]},"name":"field-unit"};
|
|
7
|
+
|
|
8
|
+
export default FieldUnit;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const InfoCircle: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10 1.25a8.75 8.75 0 1 0 .001 17.501A8.75 8.75 0 0 0 10 1.25Zm0 16.016a7.267 7.267 0 0 1 0-14.532 7.267 7.267 0 0 1 0 14.532Zm0 0"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M9.063 6.563c0 .519.417.937.937.937s.938-.418.938-.938A.935.935 0 0 0 10 5.625a.935.935 0 0 0-.938.938Zm1.406 2.187H9.53a.157.157 0 0 0-.156.156v5.313c0 .086.07.156.156.156h.938c.086 0 .156-.07.156-.156V8.906a.157.157 0 0 0-.156-.156Zm0 0"},"children":[]}],"metadata":""}]},"name":"info-circle"};
|
|
7
|
+
|
|
8
|
+
export default InfoCircle;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const IntegrationsIntegrationDiscourseColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.067 2.223c-4.261 0-7.844 3.452-7.844 7.712v7.987l7.842-.007c4.259 0 7.713-3.586 7.713-7.845 0-4.258-3.457-7.847-7.711-7.847Z","fill":"#231F20"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10.143 5.208a4.782 4.782 0 0 0-4.203 7.058l-.865 2.783 3.106-.702a4.782 4.782 0 1 0 1.967-9.139h-.005Z","fill":"#FFF9AE"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.936 7.08a4.779 4.779 0 0 1-5.755 7.259l-3.106.71 3.162-.373a4.778 4.778 0 0 0 5.698-7.597h.001Z","fill":"#00AEEF"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M13.056 6.198a4.78 4.78 0 0 1-4.965 7.82L5.075 15.05l3.106-.703a4.779 4.779 0 0 0 4.875-8.149Z","fill":"#00A94F"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M6.226 12.372a4.78 4.78 0 0 1 7.713-5.293 4.78 4.78 0 0 0-7.999 5.187l-.865 2.783 1.151-2.677Z","fill":"#F15D22"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M5.94 12.266a4.78 4.78 0 0 1 7.115-6.067 4.781 4.781 0 0 0-7.41 5.993l-.569 2.858.864-2.784Z","fill":"#E31B23"},"children":[]}],"metadata":""}]},"name":"integrations-integration-discourse-color"};
|
|
7
|
+
|
|
8
|
+
export default IntegrationsIntegrationDiscourseColor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const IntegrationsIntegrationIntercomColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M15.704 10.775a.519.519 0 0 1-1.037 0V6.112a.519.519 0 0 1 1.037 0v4.663Zm-.18 3.246c-.08.068-2.002 1.68-5.524 1.68-3.521 0-5.442-1.612-5.522-1.68a.519.519 0 0 1 .674-.789c.03.026 1.745 1.432 4.849 1.432 3.142 0 4.83-1.416 4.847-1.43a.518.518 0 1 1 .675.787ZM4.296 6.11a.519.519 0 0 1 1.037 0v4.664a.518.518 0 0 1-1.037 0V6.112Zm2.592-1.037a.519.519 0 0 1 1.037 0v6.928a.519.519 0 0 1-1.037 0V5.075Zm2.593-.262a.518.518 0 1 1 1.037 0v7.519a.52.52 0 0 1-1.037 0V4.812Zm2.593.262a.519.519 0 0 1 1.037 0v6.928a.518.518 0 0 1-1.037 0V5.075Zm3.759-2.851H4.167c-1.074 0-1.944.87-1.944 1.944v11.667c0 1.074.87 1.944 1.944 1.944h11.667c1.074 0 1.944-.87 1.944-1.944V4.167c0-1.074-.87-1.944-1.944-1.944Z","fill":"#1F8DED"},"children":[]}],"metadata":""}]},"name":"integrations-integration-intercom-color"};
|
|
7
|
+
|
|
8
|
+
export default IntegrationsIntegrationIntercomColor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const IntegrationsIntegrationSlackColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.222 12.052c0 .9-.734 1.634-1.634 1.634-.9 0-1.634-.735-1.634-1.634 0-.9.735-1.634 1.634-1.634h1.634v1.634ZM6.046 12.052c0-.9.735-1.634 1.634-1.634.9 0 1.634.735 1.634 1.634v4.092c0 .899-.735 1.634-1.634 1.634-.9 0-1.634-.735-1.634-1.634v-4.092Z","fill":"#E01E5A"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M7.68 5.49c-.9 0-1.634-.734-1.634-1.633 0-.9.735-1.634 1.634-1.634.9 0 1.634.734 1.634 1.634V5.49H7.68ZM7.68 6.314c.9 0 1.634.735 1.634 1.635 0 .899-.735 1.634-1.634 1.634H3.588c-.9 0-1.634-.735-1.634-1.634 0-.9.735-1.635 1.634-1.635H7.68Z","fill":"#36C5F0"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M14.241 7.949c0-.9.735-1.635 1.634-1.635.9 0 1.634.735 1.634 1.635 0 .899-.734 1.634-1.634 1.634h-1.634V7.949ZM13.418 7.948c0 .9-.735 1.634-1.634 1.634-.9 0-1.635-.734-1.635-1.634V3.857c0-.9.735-1.634 1.635-1.634.899 0 1.634.734 1.634 1.634v4.091Z","fill":"#2EB67D"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M11.784 14.51c.899 0 1.634.735 1.634 1.634 0 .9-.735 1.634-1.634 1.634-.9 0-1.635-.735-1.635-1.634V14.51h1.635ZM11.784 13.686c-.9 0-1.635-.735-1.635-1.634 0-.9.735-1.634 1.635-1.634h4.091c.9 0 1.634.735 1.634 1.634 0 .9-.735 1.634-1.634 1.634h-4.091Z","fill":"#ECB22E"},"children":[]}],"metadata":""}]},"name":"integrations-integration-slack-color"};
|
|
7
|
+
|
|
8
|
+
export default IntegrationsIntegrationSlackColor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const IntegrationsIntegrationZendeskColor: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.14 7.21v8.7H1.954l7.186-8.7ZM9.14 4.089a3.598 3.598 0 0 1-3.593 3.603 3.597 3.597 0 0 1-3.593-3.603H9.14ZM10.324 15.91a3.598 3.598 0 0 1 3.593-3.602 3.597 3.597 0 0 1 3.593 3.603h-7.186ZM10.324 12.788v-8.7h7.186l-7.186 8.7Z","fill":"#03363D"},"children":[]}],"metadata":""}]},"name":"integrations-integration-zendesk-color"};
|
|
7
|
+
|
|
8
|
+
export default IntegrationsIntegrationZendeskColor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Key: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20","fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"clipRule":"evenodd","d":"M6.917 7.667a5.417 5.417 0 1 1 4.689 5.368 11.456 11.456 0 0 0-.413-.05 6.842 6.842 0 0 0-.212.206l-1.228 1.228a.75.75 0 0 1-.53.22h-.806v.805a.75.75 0 0 1-.75.75H6.86V17a.75.75 0 0 1-.75.75h-1.89c-.197 0-.388 0-.548-.013a1.546 1.546 0 0 1-.589-.153 1.528 1.528 0 0 1-.667-.668 1.545 1.545 0 0 1-.154-.588c-.013-.161-.013-.351-.013-.548v-1.416c0-.147 0-.33.042-.51.038-.155.1-.304.183-.441.097-.158.226-.287.331-.391l.028-.028L6.81 9.02a6.736 6.736 0 0 0 .206-.212l-.004-.047c-.007-.08-.022-.19-.046-.366a5.458 5.458 0 0 1-.048-.727Zm5.417-3.917a3.917 3.917 0 0 0-3.882 4.444l.002.014c.02.157.04.296.05.408.01.107.02.25 0 .398-.029.202-.08.35-.179.529-.106.19-.274.356-.414.496l-.041.04-3.975 3.976a4.823 4.823 0 0 0-.142.146l-.001.012c-.002.038-.002.09-.002.191v1.352a6.376 6.376 0 0 0 .012.483l.033.003a6.4 6.4 0 0 0 .45.008H5.36v-.806a.75.75 0 0 1 .75-.75h.806v-.805a.75.75 0 0 1 .75-.75h1.245L9.92 12.13l.04-.04c.14-.141.307-.309.497-.415.179-.1.327-.15.53-.179.146-.02.29-.01.398 0 .111.01.25.03.407.05l.014.002a3.917 3.917 0 1 0 .528-7.798Zm-.75 2.361a.75.75 0 0 1 .75-.75 2.3 2.3 0 0 1 1.63.675 2.3 2.3 0 0 1 .675 1.63.75.75 0 1 1-1.5 0 .8.8 0 0 0-.236-.569.8.8 0 0 0-.57-.236.75.75 0 0 1-.75-.75Z"},"children":[]}],"metadata":""}]},"name":"key"};
|
|
7
|
+
|
|
8
|
+
export default Key;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const MoveBottom: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.25 18.5A2.25 2.25 0 0 1 3 16.25v-3.5a2.25 2.25 0 0 1 2.25-2.25h9.5A2.25 2.25 0 0 1 17 12.75v3.5a2.25 2.25 0 0 1-2.25 2.25h-9.5Zm-.75-2.25c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v3.5ZM7 4.72a.75.75 0 0 1 1.06 0l1.22 1.22V2.25a.75.75 0 0 1 1.5 0v3.69L12 4.72a.75.75 0 1 1 1.06 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0L7 5.78a.75.75 0 0 1 0-1.06Z"},"children":[]}],"metadata":""}]},"name":"move-bottom"};
|
|
7
|
+
|
|
8
|
+
export default MoveBottom;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const MoveLeft: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5.25A2.25 2.25 0 0 1 4.25 3h3.5A2.25 2.25 0 0 1 10 5.25v9.5A2.25 2.25 0 0 1 7.75 17h-3.5A2.25 2.25 0 0 1 2 14.75v-9.5Zm2.25-.75a.75.75 0 0 0-.75.75v9.5c0 .414.336.75.75.75h3.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75h-3.5Zm11.53 2.72a.75.75 0 0 1 0 1.06L14.56 9.5h3.69a.75.75 0 0 1 0 1.5h-3.69l1.22 1.22a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0Z"},"children":[]}],"metadata":""}]},"name":"move-left"};
|
|
7
|
+
|
|
8
|
+
export default MoveLeft;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const MoveRight: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10 5.25A2.25 2.25 0 0 1 12.25 3h3.5A2.25 2.25 0 0 1 18 5.25v9.5A2.25 2.25 0 0 1 15.75 17h-3.5A2.25 2.25 0 0 1 10 14.75v-9.5Zm2.25-.75a.75.75 0 0 0-.75.75v9.5c0 .414.336.75.75.75h3.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75h-3.5Zm-8.03 8.78a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 1 0-1.06 1.06L5.44 9.5H1.75a.75.75 0 0 0 0 1.5h3.69l-1.22 1.22a.75.75 0 0 0 0 1.06Z"},"children":[]}],"metadata":""}]},"name":"move-right"};
|
|
7
|
+
|
|
8
|
+
export default MoveRight;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const MoveTop: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.25 9.5A2.25 2.25 0 0 1 3 7.25v-3.5A2.25 2.25 0 0 1 5.25 1.5h9.5A2.25 2.25 0 0 1 17 3.75v3.5a2.25 2.25 0 0 1-2.25 2.25h-9.5ZM4.5 7.25c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v3.5Zm8.56 8.03a.75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0L7 14.22a.75.75 0 1 0 1.06 1.06l1.22-1.22v3.69a.75.75 0 0 0 1.5 0v-3.69L12 15.28a.75.75 0 0 0 1.06 0Z"},"children":[]}],"metadata":""}]},"name":"move-top"};
|
|
7
|
+
|
|
8
|
+
export default MoveTop;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Pin: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M12.504 2c.213-.008.42.071.57.22l4.703 4.628a.744.744 0 0 1-.046 1.102l-4.123 3.44.274 2.603a.743.743 0 0 1-.219.608L12.3 15.943a.77.77 0 0 1-1.078 0l-3.027-2.978-4.893 4.815a.77.77 0 0 1-1.078 0 .742.742 0 0 1 0-1.06l4.894-4.816L3.83 8.671a.744.744 0 0 1 0-1.06l1.364-1.343a.77.77 0 0 1 .618-.216l2.644.27 3.497-4.057a.767.767 0 0 1 .55-.264Zm.077 1.856L9.36 7.594a.768.768 0 0 1-.66.26l-2.683-.273-.568.56 6.312 6.211.569-.56-.279-2.64a.744.744 0 0 1 .265-.65l3.799-3.17-3.533-3.476Z"},"children":[]}],"metadata":""}]},"name":"pin"};
|
|
7
|
+
|
|
8
|
+
export default Pin;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const RicheditorCommentCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"
|
|
6
|
+
const RicheditorCommentCreate: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M5.25 7A.75.75 0 0 1 6 6.25h7.5a.75.75 0 0 1 0 1.5H6A.75.75 0 0 1 5.25 7ZM6 9.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5H6Z"},"children":[]},{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 5a2.75 2.75 0 0 1 2.75-2.75h10.8A2.95 2.95 0 0 1 18.5 5.2v7.71a2.75 2.75 0 0 1-2.75 2.75h-.87v1.84a.75.75 0 0 1-1.131.646l-4.22-2.485H4.75A2.75 2.75 0 0 1 2 12.91V5Zm2.75-1.25c-.69 0-1.25.56-1.25 1.25v7.91c0 .691.56 1.25 1.25 1.25h4.983a.75.75 0 0 1 .38.104l3.266 1.924V14.91a.75.75 0 0 1 .75-.75h1.621c.69 0 1.25-.56 1.25-1.25V5.2c0-.8-.65-1.45-1.45-1.45H4.75Z"},"children":[]}],"metadata":""}]},"name":"richeditor-comment-create"};
|
|
7
7
|
|
|
8
8
|
export default RicheditorCommentCreate;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const SendArrow: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10 3.85c.307 0 .6.123.816.34l4.25 4.286a1.15 1.15 0 1 1-1.633 1.62L11.15 7.793V15a1.15 1.15 0 0 1-2.3 0V7.793l-2.283 2.303a1.15 1.15 0 1 1-1.634-1.62l4.25-4.286c.216-.217.51-.34.817-.34Z"},"children":[]}],"metadata":""}]},"name":"send-arrow"};
|
|
7
|
+
|
|
8
|
+
export default SendArrow;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsAvatar: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M11.707 14.165A4.487 4.487 0 0 1 10 14.5c-.604 0-1.18-.119-1.707-.335.221-.473.837-.915 1.707-.915.87 0 1.486.442 1.707.915Zm1.279-.798c-.55-1.005-1.739-1.617-2.986-1.617s-2.435.612-2.986 1.617a4.5 4.5 0 1 1 5.972 0ZM16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Zm-6-2.417a1.583 1.583 0 1 0 0 3.167 1.583 1.583 0 0 0 0-3.167Z","fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"units-avatar"};
|
|
7
|
+
|
|
8
|
+
export default UnitsAvatar;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsCollection: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 17A2.25 2.25 0 0 1 2 14.75v-9.5A2.25 2.25 0 0 1 4.25 3h11.5A2.25 2.25 0 0 1 18 5.25v9.5A2.25 2.25 0 0 1 15.75 17H4.25Zm0-1.5a.75.75 0 0 1-.75-.75v-8A.75.75 0 0 1 4.25 6h11.5a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-.75.75H4.25ZM5.5 11a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-9ZM5 8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-9A.5.5 0 0 1 5 9V8Z","fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"units-collection"};
|
|
7
|
+
|
|
8
|
+
export default UnitsCollection;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsCounter: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.926 14.5c1.832 0 3.074-1.04 3.074-2.604 0-1.188-.76-1.94-1.936-2.06V9.8c.93-.21 1.646-.926 1.646-2.019 0-1.38-1.127-2.281-2.795-2.281-1.395 0-2.292.705-2.642 1.547-.082.203-.12.376-.12.58 0 .435.235.728.695.728.372 0 .563-.15.744-.556.257-.609.661-.913 1.329-.913.798 0 1.225.46 1.225 1.152 0 .705-.536 1.195-1.362 1.195h-.323c-.399 0-.629.262-.629.639 0 .388.23.645.63.645h.344c.957 0 1.52.465 1.515 1.302 0 .716-.558 1.23-1.368 1.23-.82 0-1.247-.358-1.526-.962-.164-.328-.371-.471-.7-.471-.454 0-.727.292-.727.758 0 .18.038.37.126.567.372.848 1.296 1.559 2.8 1.559ZM2 12.75A2.25 2.25 0 0 0 4.25 15h.5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 1-.75-.75v-5.5a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 0 0-1.5h-.5A2.25 2.25 0 0 0 2 7.25v5.5ZM15.75 15A2.25 2.25 0 0 0 18 12.75v-5.5A2.25 2.25 0 0 0 15.75 5h-.5a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 0 0 1.5h.5Z","fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"units-counter"};
|
|
7
|
+
|
|
8
|
+
export default UnitsCounter;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsDbBadgeAbbr: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5.25 17A2.25 2.25 0 0 1 3 14.75v-9.5A2.25 2.25 0 0 1 5.25 3h9.5A2.25 2.25 0 0 1 17 5.25v9.5A2.25 2.25 0 0 1 14.75 17h-9.5Zm2.362-2.996c-.149.486-.386.691-.803.691-.492 0-.809-.286-.809-.74 0-.125.031-.3.106-.492l2.608-7.091c.218-.598.58-.872 1.165-.872.591 0 .952.261 1.176.865l2.615 7.098a1.4 1.4 0 0 1 .106.491c0 .436-.336.741-.803.741-.436 0-.679-.199-.822-.678l-.592-1.719H8.204l-.592 1.706Zm2.235-6.81-1.263 3.834h2.583L9.891 7.193h-.044Z"},"children":[]}],"metadata":""}]},"name":"units-db-badge-abbr"};
|
|
7
|
+
|
|
8
|
+
export default UnitsDbBadgeAbbr;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsDbBadgeFull: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.25 16A2.25 2.25 0 0 1 2 13.75v-7.5A2.25 2.25 0 0 1 4.25 4h11.5A2.25 2.25 0 0 1 18 6.25v7.5A2.25 2.25 0 0 1 15.75 16H4.25Zm.375-2.5c.321 0 .504-.156.62-.526l.456-1.299H8.29l.456 1.308c.11.365.298.517.634.517.36 0 .62-.232.62-.564 0-.109-.024-.218-.082-.374L7.901 7.159c-.173-.46-.452-.659-.908-.659-.452 0-.73.209-.899.664l-2.012 5.398c-.058.147-.082.28-.082.374 0 .346.245.564.625.564Zm1.369-2.791.975-2.92h.033l.985 2.92H5.994Zm5.529 2.791h2.18c1.433 0 2.297-.747 2.297-1.98 0-.93-.616-1.605-1.531-1.712V9.77c.672-.117 1.2-.781 1.2-1.524 0-1.057-.785-1.746-1.98-1.746h-2.166c-.327 0-.523.213-.523.563v5.874c0 .35.196.563.523.563Zm.523-4.021V7.388h1.391c.756 0 1.186.359 1.186 1.009 0 .693-.5 1.082-1.405 1.082h-1.172Zm0 3.133v-2.304h1.382c.99 0 1.503.388 1.503 1.145s-.5 1.16-1.443 1.16h-1.442Z"},"children":[]}],"metadata":""}]},"name":"units-db-badge-full"};
|
|
7
|
+
|
|
8
|
+
export default UnitsDbBadgeFull;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsDbIcon: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M8.25 14A2.25 2.25 0 0 1 6 11.75v-3.5A2.25 2.25 0 0 1 8.25 6h3.5A2.25 2.25 0 0 1 14 8.25v3.5A2.25 2.25 0 0 1 11.75 14h-3.5Z"},"children":[]}],"metadata":""}]},"name":"units-db-icon"};
|
|
7
|
+
|
|
8
|
+
export default UnitsDbIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsField: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 12.75A2.25 2.25 0 0 0 4.25 15h11.5A2.25 2.25 0 0 0 18 12.75v-5.5A2.25 2.25 0 0 0 15.75 5H4.25A2.25 2.25 0 0 0 2 7.25v5.5Zm1.5 0c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75v5.5Zm6.75-3.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM6 8.5a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1H6Z"},"children":[]}],"metadata":""}]},"name":"units-field"};
|
|
7
|
+
|
|
8
|
+
export default UnitsField;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsInput: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M4.75 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm-.5 11A2.25 2.25 0 0 1 2 12.75v-3.5A2.25 2.25 0 0 1 4.25 7h11.5A2.25 2.25 0 0 1 18 9.25v3.5A2.25 2.25 0 0 1 15.75 15H4.25Zm0-1.5a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75H4.25ZM5 11a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5A.75.75 0 0 1 5 11Z","fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"units-input"};
|
|
7
|
+
|
|
8
|
+
export default UnitsInput;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsProgressBar: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M5 13h10c2 0 3-1 3-3s-1.233-3-3-3H5c-2 0-3 1-3 3s1 3 3 3Zm5-4.5v3h5c.84 0 1.5-.5 1.5-1.5S16 8.5 15 8.5h-5Z","fill":"currentColor"},"children":[]}],"metadata":""}]},"name":"units-progress-bar"};
|
|
7
|
+
|
|
8
|
+
export default UnitsProgressBar;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const UnitsRichText: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M13.25 3.75A.75.75 0 0 1 14 3h1.25A2.75 2.75 0 0 1 18 5.75v8.5A2.75 2.75 0 0 1 15.25 17H4.75A2.75 2.75 0 0 1 2 14.25V11a.75.75 0 0 1 1.5 0v3.25c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-8.5c0-.69-.56-1.25-1.25-1.25H14a.75.75 0 0 1-.75-.75Zm-4.65.564H3.8a.8.8 0 1 0 0 1.6h1.6v4a.8.8 0 1 0 1.6 0v-4h1.6a.8.8 0 0 0 0-1.6Zm2.1 3.257h3.6a.664.664 0 0 0 .495-.23.837.837 0 0 0 .205-.555.837.837 0 0 0-.205-.556A.664.664 0 0 0 14.3 6h-3.6a.664.664 0 0 0-.495.23.837.837 0 0 0-.205.556c0 .208.074.408.205.555.131.148.31.23.495.23Zm3.6 4.715c.186 0 .364.082.495.23a.837.837 0 0 1 .205.555.837.837 0 0 1-.205.556.664.664 0 0 1-.495.23H5.7a.664.664 0 0 1-.495-.23.837.837 0 0 1-.205-.556c0-.208.074-.408.205-.555a.663.663 0 0 1 .495-.23h8.6Zm0-3.143h-3.6a.664.664 0 0 0-.495.23.837.837 0 0 0-.205.556c0 .208.074.408.205.555.131.148.31.23.495.23h3.6a.664.664 0 0 0 .495-.23A.837.837 0 0 0 15 9.93a.837.837 0 0 0-.205-.556.664.664 0 0 0-.495-.23Z"},"children":[]}],"metadata":""}]},"name":"units-rich-text"};
|
|
7
|
+
|
|
8
|
+
export default UnitsRichText;
|