@liner-fe/icon 0.1.23 → 0.1.24
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/.ultra.cache.json +1 -1
- package/CHANGELOG.md +6 -0
- package/assets/add-emoji/index.tsx +45 -0
- package/assets/color-hypothesis-evaluator/index.tsx +45 -0
- package/assets/color-survey-generator/index.tsx +45 -0
- package/index.tsx +4 -1
- package/lib/index.d.ts +8 -2
- package/lib/index.js +109 -1
- package/package.json +1 -1
package/.ultra.cache.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":{"assets":"
|
|
1
|
+
{"files":{"assets":"1760594056767.757","index.tsx":"1760594056769.757","lib":"1760594089386.7642","node_modules":"1760594048087.7559",".gitignore":"58c55a7d67f2161e09b2a19f2db26d588e658d09","CHANGELOG.md":"de8be98a0d2d31bc31a785898fce3965aa48317b.1760594052450.7563","config/tsup/tsup.config.ts":"812a138e414703802d84e4d978708acbd809458c","package.json":"e4bcfad997c11a214fc7c09bf1150282a97f5ed6.1760594052259.7563","scripts/forward-ref-pure.ts":"e12956db676ca6e224935cde7f9beab88c2b39f4","tsconfig.build.json":"af00f0eed6650fb83dad99d4631b56052be48626"},"deps":{"@liner-fe/design-token-primitive":1760594068493.7585}}
|
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconAddEmoji = forwardRef<SVGSVGElement, IconProps>(
|
|
6
|
+
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
|
+
if (fill && thick) {
|
|
8
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
+
<path d="M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z" style={{ fill: `var(--${type})` }}/>
|
|
10
|
+
<path d="M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z" style={{ fill: `var(--${type})` }}/>
|
|
11
|
+
<path d="M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
12
|
+
<path d="M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
13
|
+
<path d="M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z" style={{ fill: `var(--${type})` }}/>
|
|
14
|
+
</svg>
|
|
15
|
+
;
|
|
16
|
+
} else if (fill) {
|
|
17
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
18
|
+
<path d="M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z" style={{ fill: `var(--${type})` }}/>
|
|
19
|
+
<path d="M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z" style={{ fill: `var(--${type})` }}/>
|
|
20
|
+
<path d="M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
21
|
+
<path d="M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
22
|
+
<path d="M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z" style={{ fill: `var(--${type})` }}/>
|
|
23
|
+
</svg>
|
|
24
|
+
;
|
|
25
|
+
} else if (thick) {
|
|
26
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
27
|
+
<path d="M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z" style={{ fill: `var(--${type})` }}/>
|
|
28
|
+
<path d="M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z" style={{ fill: `var(--${type})` }}/>
|
|
29
|
+
<path d="M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
30
|
+
<path d="M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
31
|
+
<path d="M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z" style={{ fill: `var(--${type})` }}/>
|
|
32
|
+
</svg>
|
|
33
|
+
;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
37
|
+
<path d="M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z" style={{ fill: `var(--${type})` }}/>
|
|
38
|
+
<path d="M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z" style={{ fill: `var(--${type})` }}/>
|
|
39
|
+
<path d="M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
40
|
+
<path d="M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z" style={{ fill: `var(--${type})` }}/>
|
|
41
|
+
<path d="M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z" style={{ fill: `var(--${type})` }}/>
|
|
42
|
+
</svg>
|
|
43
|
+
;
|
|
44
|
+
}
|
|
45
|
+
);
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconColorHypothesisEvaluator = forwardRef<SVGSVGElement, IconProps>(
|
|
6
|
+
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
|
+
if (fill && thick) {
|
|
8
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
+
<path opacity="0.7" d="M41 7H21V27H41V7Z" fill="#0C893B"/>
|
|
10
|
+
<path d="M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z" fill="#0C893B"/>
|
|
11
|
+
<path d="M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z" fill="#0C893B"/>
|
|
12
|
+
<path d="M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z" fill="#0C893B"/>
|
|
13
|
+
<path d="M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z" fill="#0C893B"/>
|
|
14
|
+
</svg>
|
|
15
|
+
;
|
|
16
|
+
} else if (fill) {
|
|
17
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
18
|
+
<path opacity="0.7" d="M41 7H21V27H41V7Z" fill="#0C893B"/>
|
|
19
|
+
<path d="M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z" fill="#0C893B"/>
|
|
20
|
+
<path d="M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z" fill="#0C893B"/>
|
|
21
|
+
<path d="M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z" fill="#0C893B"/>
|
|
22
|
+
<path d="M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z" fill="#0C893B"/>
|
|
23
|
+
</svg>
|
|
24
|
+
;
|
|
25
|
+
} else if (thick) {
|
|
26
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
27
|
+
<path opacity="0.7" d="M41 7H21V27H41V7Z" fill="#0C893B"/>
|
|
28
|
+
<path d="M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z" fill="#0C893B"/>
|
|
29
|
+
<path d="M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z" fill="#0C893B"/>
|
|
30
|
+
<path d="M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z" fill="#0C893B"/>
|
|
31
|
+
<path d="M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z" fill="#0C893B"/>
|
|
32
|
+
</svg>
|
|
33
|
+
;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
37
|
+
<path opacity="0.7" d="M41 7H21V27H41V7Z" fill="#0C893B"/>
|
|
38
|
+
<path d="M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z" fill="#0C893B"/>
|
|
39
|
+
<path d="M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z" fill="#0C893B"/>
|
|
40
|
+
<path d="M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z" fill="#0C893B"/>
|
|
41
|
+
<path d="M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z" fill="#0C893B"/>
|
|
42
|
+
</svg>
|
|
43
|
+
;
|
|
44
|
+
}
|
|
45
|
+
);
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconColorSurveyGenerator = forwardRef<SVGSVGElement, IconProps>(
|
|
6
|
+
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
|
+
if (fill && thick) {
|
|
8
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
+
<path d="M18.7129 29.4667H40.1796V8H18.7129V29.4667Z" fill="#0C893B" fill-opacity="0.5"/>
|
|
10
|
+
<path d="M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z" fill="#0C893B"/>
|
|
11
|
+
<path d="M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z" fill="#0C893B"/>
|
|
12
|
+
<path d="M36.1797 23.25H23.1797V20.75H36.1797V23.25Z" fill="#0C893B"/>
|
|
13
|
+
<path d="M36.1797 16.25H23.1797V13.75H36.1797V16.25Z" fill="#0C893B"/>
|
|
14
|
+
</svg>
|
|
15
|
+
;
|
|
16
|
+
} else if (fill) {
|
|
17
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
18
|
+
<path d="M18.7129 29.4667H40.1796V8H18.7129V29.4667Z" fill="#0C893B" fill-opacity="0.5"/>
|
|
19
|
+
<path d="M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z" fill="#0C893B"/>
|
|
20
|
+
<path d="M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z" fill="#0C893B"/>
|
|
21
|
+
<path d="M36.1797 23.25H23.1797V20.75H36.1797V23.25Z" fill="#0C893B"/>
|
|
22
|
+
<path d="M36.1797 16.25H23.1797V13.75H36.1797V16.25Z" fill="#0C893B"/>
|
|
23
|
+
</svg>
|
|
24
|
+
;
|
|
25
|
+
} else if (thick) {
|
|
26
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
27
|
+
<path d="M18.7129 29.4667H40.1796V8H18.7129V29.4667Z" fill="#0C893B" fill-opacity="0.5"/>
|
|
28
|
+
<path d="M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z" fill="#0C893B"/>
|
|
29
|
+
<path d="M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z" fill="#0C893B"/>
|
|
30
|
+
<path d="M36.1797 23.25H23.1797V20.75H36.1797V23.25Z" fill="#0C893B"/>
|
|
31
|
+
<path d="M36.1797 16.25H23.1797V13.75H36.1797V16.25Z" fill="#0C893B"/>
|
|
32
|
+
</svg>
|
|
33
|
+
;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
37
|
+
<path d="M18.7129 29.4667H40.1796V8H18.7129V29.4667Z" fill="#0C893B" fill-opacity="0.5"/>
|
|
38
|
+
<path d="M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z" fill="#0C893B"/>
|
|
39
|
+
<path d="M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z" fill="#0C893B"/>
|
|
40
|
+
<path d="M36.1797 23.25H23.1797V20.75H36.1797V23.25Z" fill="#0C893B"/>
|
|
41
|
+
<path d="M36.1797 16.25H23.1797V13.75H36.1797V16.25Z" fill="#0C893B"/>
|
|
42
|
+
</svg>
|
|
43
|
+
;
|
|
44
|
+
}
|
|
45
|
+
);
|
package/index.tsx
CHANGED
|
@@ -208,8 +208,11 @@ export { IconAtSign } from './assets/at-sign';
|
|
|
208
208
|
export { IconColorPeerReview } from './assets/color-peer-review';
|
|
209
209
|
export { IconAdjustment } from './assets/adjustment';
|
|
210
210
|
export { IconViewSidebar } from './assets/view-sidebar';
|
|
211
|
+
export { IconAddEmoji } from './assets/add-emoji';
|
|
212
|
+
export { IconColorHypothesisEvaluator } from './assets/color-hypothesis-evaluator';
|
|
213
|
+
export { IconColorSurveyGenerator } from './assets/color-survey-generator';
|
|
211
214
|
|
|
212
|
-
export type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link" | "color-hypothesis-generator" | "color-citation-recommender" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer" | "at-sign" | "color-peer-review" | "adjustment" | "view-sidebar";
|
|
215
|
+
export type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link" | "color-hypothesis-generator" | "color-citation-recommender" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer" | "at-sign" | "color-peer-review" | "adjustment" | "view-sidebar" | "add-emoji" | "color-hypothesis-evaluator" | "color-survey-generator";
|
|
213
216
|
|
|
214
217
|
export type IconSizeKey = keyof typeof iconSizeMap;
|
|
215
218
|
|
package/lib/index.d.ts
CHANGED
|
@@ -417,7 +417,13 @@ declare const IconAdjustment: React.ForwardRefExoticComponent<Omit<IconProps, "r
|
|
|
417
417
|
|
|
418
418
|
declare const IconViewSidebar: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
419
419
|
|
|
420
|
-
|
|
420
|
+
declare const IconAddEmoji: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
421
|
+
|
|
422
|
+
declare const IconColorHypothesisEvaluator: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
423
|
+
|
|
424
|
+
declare const IconColorSurveyGenerator: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
425
|
+
|
|
426
|
+
type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link" | "color-hypothesis-generator" | "color-citation-recommender" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer" | "at-sign" | "color-peer-review" | "adjustment" | "view-sidebar" | "add-emoji" | "color-hypothesis-evaluator" | "color-survey-generator";
|
|
421
427
|
type IconSizeKey = keyof typeof iconSizeMap;
|
|
422
428
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
423
429
|
fill?: boolean;
|
|
@@ -429,4 +435,4 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
|
429
435
|
}
|
|
430
436
|
type IconComponentType = React.ForwardRefExoticComponent<Omit<IconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
|
|
431
437
|
|
|
432
|
-
export { IconAddClock, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorCitationRecommender, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorHypothesisGenerator, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveySimulator, IconColorTxt, type IconComponentType, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, type IconName, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|
|
438
|
+
export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorCitationRecommender, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, type IconComponentType, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, type IconName, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|
package/lib/index.js
CHANGED
|
@@ -4636,5 +4636,113 @@ var IconViewSidebar = /* @__PURE__ */ forwardRef(
|
|
|
4636
4636
|
] });
|
|
4637
4637
|
}
|
|
4638
4638
|
);
|
|
4639
|
+
var IconAddEmoji = /* @__PURE__ */ forwardRef(
|
|
4640
|
+
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
4641
|
+
if (fill && thick) {
|
|
4642
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4643
|
+
/* @__PURE__ */ jsx("path", { d: "M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z", style: { fill: `var(--${type})` } }),
|
|
4644
|
+
/* @__PURE__ */ jsx("path", { d: "M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z", style: { fill: `var(--${type})` } }),
|
|
4645
|
+
/* @__PURE__ */ jsx("path", { d: "M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4646
|
+
/* @__PURE__ */ jsx("path", { d: "M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4647
|
+
/* @__PURE__ */ jsx("path", { d: "M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z", style: { fill: `var(--${type})` } })
|
|
4648
|
+
] });
|
|
4649
|
+
} else if (fill) {
|
|
4650
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4651
|
+
/* @__PURE__ */ jsx("path", { d: "M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z", style: { fill: `var(--${type})` } }),
|
|
4652
|
+
/* @__PURE__ */ jsx("path", { d: "M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z", style: { fill: `var(--${type})` } }),
|
|
4653
|
+
/* @__PURE__ */ jsx("path", { d: "M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4654
|
+
/* @__PURE__ */ jsx("path", { d: "M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4655
|
+
/* @__PURE__ */ jsx("path", { d: "M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z", style: { fill: `var(--${type})` } })
|
|
4656
|
+
] });
|
|
4657
|
+
} else if (thick) {
|
|
4658
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4659
|
+
/* @__PURE__ */ jsx("path", { d: "M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z", style: { fill: `var(--${type})` } }),
|
|
4660
|
+
/* @__PURE__ */ jsx("path", { d: "M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z", style: { fill: `var(--${type})` } }),
|
|
4661
|
+
/* @__PURE__ */ jsx("path", { d: "M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4662
|
+
/* @__PURE__ */ jsx("path", { d: "M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4663
|
+
/* @__PURE__ */ jsx("path", { d: "M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z", style: { fill: `var(--${type})` } })
|
|
4664
|
+
] });
|
|
4665
|
+
}
|
|
4666
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4667
|
+
/* @__PURE__ */ jsx("path", { d: "M24 4C25.3673 4 26.7046 4.13784 27.998 4.40039L27.2021 8.32031C26.1692 8.11063 25.0985 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C32.8366 40 40 32.8366 40 24C40 22.9015 39.8894 21.8308 39.6797 20.7979L43.5996 20.002C43.8622 21.2954 44 22.6327 44 24C44 35.0457 35.0457 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4Z", style: { fill: `var(--${type})` } }),
|
|
4668
|
+
/* @__PURE__ */ jsx("path", { d: "M34.7266 26.4434C33.6149 31.3422 29.2373 35.0008 24 35.001C18.7626 35.0009 14.3841 31.3422 13.2725 26.4434L17.1729 25.5586C17.8802 28.6755 20.6713 31.0009 24 31.001C27.3286 31.0008 30.1188 28.6754 30.8262 25.5586L34.7266 26.4434Z", style: { fill: `var(--${type})` } }),
|
|
4669
|
+
/* @__PURE__ */ jsx("path", { d: "M17.5 17C18.8807 17 20 18.1193 20 19.5C20 20.8807 18.8807 22 17.5 22C16.1193 22 15 20.8807 15 19.5C15 18.1193 16.1193 17 17.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4670
|
+
/* @__PURE__ */ jsx("path", { d: "M30.5 17C31.8807 17 33 18.1193 33 19.5C33 20.8807 31.8807 22 30.5 22C29.1193 22 28 20.8807 28 19.5C28 18.1193 29.1193 17 30.5 17Z", style: { fill: `var(--${type})` } }),
|
|
4671
|
+
/* @__PURE__ */ jsx("path", { d: "M39.749 8.75H44.501V12.75H39.749V17.5H35.749V12.75H31.001V8.75H35.749V4H39.749V8.75Z", style: { fill: `var(--${type})` } })
|
|
4672
|
+
] });
|
|
4673
|
+
}
|
|
4674
|
+
);
|
|
4675
|
+
var IconColorHypothesisEvaluator = /* @__PURE__ */ forwardRef(
|
|
4676
|
+
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
4677
|
+
if (fill && thick) {
|
|
4678
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4679
|
+
/* @__PURE__ */ jsx("path", { opacity: "0.7", d: "M41 7H21V27H41V7Z", fill: "#0C893B" }),
|
|
4680
|
+
/* @__PURE__ */ jsx("path", { d: "M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z", fill: "#0C893B" }),
|
|
4681
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z", fill: "#0C893B" }),
|
|
4682
|
+
/* @__PURE__ */ jsx("path", { d: "M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z", fill: "#0C893B" }),
|
|
4683
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z", fill: "#0C893B" })
|
|
4684
|
+
] });
|
|
4685
|
+
} else if (fill) {
|
|
4686
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4687
|
+
/* @__PURE__ */ jsx("path", { opacity: "0.7", d: "M41 7H21V27H41V7Z", fill: "#0C893B" }),
|
|
4688
|
+
/* @__PURE__ */ jsx("path", { d: "M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z", fill: "#0C893B" }),
|
|
4689
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z", fill: "#0C893B" }),
|
|
4690
|
+
/* @__PURE__ */ jsx("path", { d: "M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z", fill: "#0C893B" }),
|
|
4691
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z", fill: "#0C893B" })
|
|
4692
|
+
] });
|
|
4693
|
+
} else if (thick) {
|
|
4694
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4695
|
+
/* @__PURE__ */ jsx("path", { opacity: "0.7", d: "M41 7H21V27H41V7Z", fill: "#0C893B" }),
|
|
4696
|
+
/* @__PURE__ */ jsx("path", { d: "M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z", fill: "#0C893B" }),
|
|
4697
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z", fill: "#0C893B" }),
|
|
4698
|
+
/* @__PURE__ */ jsx("path", { d: "M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z", fill: "#0C893B" }),
|
|
4699
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z", fill: "#0C893B" })
|
|
4700
|
+
] });
|
|
4701
|
+
}
|
|
4702
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4703
|
+
/* @__PURE__ */ jsx("path", { opacity: "0.7", d: "M41 7H21V27H41V7Z", fill: "#0C893B" }),
|
|
4704
|
+
/* @__PURE__ */ jsx("path", { d: "M8.08887 39.7979H15.001V42.2979H5.58789V32.8857H8.08887V39.7979Z", fill: "#0C893B" }),
|
|
4705
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 42.25H21.3389V39.75H28.25V32.8389H30.75V42.25Z", fill: "#0C893B" }),
|
|
4706
|
+
/* @__PURE__ */ jsx("path", { d: "M15 19.75H8.08887V26.6611H5.58887V17.25H15V19.75Z", fill: "#0C893B" }),
|
|
4707
|
+
/* @__PURE__ */ jsx("path", { d: "M30.75 26.6611H28.25V19.75H21.3389V17.25H30.75V26.6611Z", fill: "#0C893B" })
|
|
4708
|
+
] });
|
|
4709
|
+
}
|
|
4710
|
+
);
|
|
4711
|
+
var IconColorSurveyGenerator = /* @__PURE__ */ forwardRef(
|
|
4712
|
+
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
4713
|
+
if (fill && thick) {
|
|
4714
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4715
|
+
/* @__PURE__ */ jsx("path", { d: "M18.7129 29.4667H40.1796V8H18.7129V29.4667Z", fill: "#0C893B", "fill-opacity": "0.5" }),
|
|
4716
|
+
/* @__PURE__ */ jsx("path", { d: "M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z", fill: "#0C893B" }),
|
|
4717
|
+
/* @__PURE__ */ jsx("path", { d: "M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z", fill: "#0C893B" }),
|
|
4718
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 23.25H23.1797V20.75H36.1797V23.25Z", fill: "#0C893B" }),
|
|
4719
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 16.25H23.1797V13.75H36.1797V16.25Z", fill: "#0C893B" })
|
|
4720
|
+
] });
|
|
4721
|
+
} else if (fill) {
|
|
4722
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4723
|
+
/* @__PURE__ */ jsx("path", { d: "M18.7129 29.4667H40.1796V8H18.7129V29.4667Z", fill: "#0C893B", "fill-opacity": "0.5" }),
|
|
4724
|
+
/* @__PURE__ */ jsx("path", { d: "M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z", fill: "#0C893B" }),
|
|
4725
|
+
/* @__PURE__ */ jsx("path", { d: "M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z", fill: "#0C893B" }),
|
|
4726
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 23.25H23.1797V20.75H36.1797V23.25Z", fill: "#0C893B" }),
|
|
4727
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 16.25H23.1797V13.75H36.1797V16.25Z", fill: "#0C893B" })
|
|
4728
|
+
] });
|
|
4729
|
+
} else if (thick) {
|
|
4730
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4731
|
+
/* @__PURE__ */ jsx("path", { d: "M18.7129 29.4667H40.1796V8H18.7129V29.4667Z", fill: "#0C893B", "fill-opacity": "0.5" }),
|
|
4732
|
+
/* @__PURE__ */ jsx("path", { d: "M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z", fill: "#0C893B" }),
|
|
4733
|
+
/* @__PURE__ */ jsx("path", { d: "M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z", fill: "#0C893B" }),
|
|
4734
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 23.25H23.1797V20.75H36.1797V23.25Z", fill: "#0C893B" }),
|
|
4735
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 16.25H23.1797V13.75H36.1797V16.25Z", fill: "#0C893B" })
|
|
4736
|
+
] });
|
|
4737
|
+
}
|
|
4738
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4739
|
+
/* @__PURE__ */ jsx("path", { d: "M18.7129 29.4667H40.1796V8H18.7129V29.4667Z", fill: "#0C893B", "fill-opacity": "0.5" }),
|
|
4740
|
+
/* @__PURE__ */ jsx("path", { d: "M10.3594 37.8203H29.3057V40.1787H8V18.874H10.3594V37.8203Z", fill: "#0C893B" }),
|
|
4741
|
+
/* @__PURE__ */ jsx("path", { d: "M15.7334 32.8203H34.6797V35.1787H13.374V13.874H15.7334V32.8203Z", fill: "#0C893B" }),
|
|
4742
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 23.25H23.1797V20.75H36.1797V23.25Z", fill: "#0C893B" }),
|
|
4743
|
+
/* @__PURE__ */ jsx("path", { d: "M36.1797 16.25H23.1797V13.75H36.1797V16.25Z", fill: "#0C893B" })
|
|
4744
|
+
] });
|
|
4745
|
+
}
|
|
4746
|
+
);
|
|
4639
4747
|
|
|
4640
|
-
export { IconAddClock, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorCitationRecommender, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorHypothesisGenerator, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveySimulator, IconColorTxt, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|
|
4748
|
+
export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorCitationRecommender, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|