@liner-fe/icon 0.1.5 → 0.1.7
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/CHANGELOG.md +12 -0
- package/assets/at-sign/index.tsx +29 -0
- package/assets/color-citation-recommender/index.tsx +0 -4
- package/assets/color-hypothesis-generator/index.tsx +0 -4
- package/assets/color-literature-review/index.tsx +0 -4
- package/assets/color-peer-review/index.tsx +0 -4
- package/assets/color-research-tracer/index.tsx +0 -4
- package/assets/color-survey-simulator/index.tsx +0 -4
- package/index.tsx +6 -3
- package/lib/index.d.ts +4 -2
- package/lib/index.js +31 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { NewIconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconAtSign = forwardRef<SVGSVGElement, NewIconProps>(
|
|
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 fillRule="evenodd" clipRule="evenodd" d="M24 4.5C37.3368 4.5 44.0703 16.4835 42.9893 25.6748C42.4324 30.4081 39.6587 33.2237 36.4766 33.4395C34.9269 33.5445 33.4012 32.9956 32.2734 31.8467C31.8219 31.3866 31.4502 30.8445 31.1641 30.2344C29.4224 32.234 26.86 33.5 24 33.5C18.7533 33.5 14.5 29.2467 14.5 24C14.5 18.7533 18.7533 14.5 24 14.5C26.515 14.5 28.8006 15.4786 30.5 17.0742V14H33.5V27.0566C33.5 28.3805 33.9195 29.2412 34.4141 29.7451C34.9112 30.2517 35.5733 30.4937 36.2734 30.4463C37.5912 30.357 39.5675 29.0915 40.0107 25.3252C40.9294 17.5165 35.1604 7.5 24 7.5C14.8873 7.5 7.5 14.8873 7.5 24C7.5 33.1127 14.8873 40.5 24 40.5C27.5442 40.5 30.1001 39.7925 31.7393 39.1143C32.5608 38.7743 33.1569 38.4391 33.5352 38.2002C33.7242 38.0808 33.8593 37.9851 33.9404 37.9248C33.9807 37.8949 34.0076 37.8734 34.0215 37.8623L34.0303 37.8555L34.0254 37.8604L35.9746 40.1396L35.9707 40.1436C35.9687 40.1452 35.9663 40.1474 35.9639 40.1494C35.959 40.1535 35.9529 40.1586 35.9463 40.1641C35.933 40.1751 35.9158 40.1889 35.8955 40.2051C35.8545 40.2379 35.7991 40.2813 35.7295 40.333C35.59 40.4367 35.3926 40.5757 35.1367 40.7373C34.6244 41.0609 33.8764 41.4758 32.8857 41.8857C30.8999 42.7074 27.9557 43.5 24 43.5C13.2304 43.5 4.5 34.7696 4.5 24C4.5 13.2304 13.2304 4.5 24 4.5ZM24 17.5C20.4101 17.5 17.5 20.4101 17.5 24C17.5 27.5899 20.4101 30.5 24 30.5C27.5899 30.5 30.5 27.5899 30.5 24C30.5 20.4101 27.5899 17.5 24 17.5Z" style={{ fill: `var(--${type})` }}/>
|
|
10
|
+
</svg>
|
|
11
|
+
;
|
|
12
|
+
} else if (fill) {
|
|
13
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
14
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M24 4.5C37.3368 4.5 44.0703 16.4835 42.9893 25.6748C42.4324 30.4081 39.6587 33.2237 36.4766 33.4395C34.9269 33.5445 33.4012 32.9956 32.2734 31.8467C31.8219 31.3866 31.4502 30.8445 31.1641 30.2344C29.4224 32.234 26.86 33.5 24 33.5C18.7533 33.5 14.5 29.2467 14.5 24C14.5 18.7533 18.7533 14.5 24 14.5C26.515 14.5 28.8006 15.4786 30.5 17.0742V14H33.5V27.0566C33.5 28.3805 33.9195 29.2412 34.4141 29.7451C34.9112 30.2517 35.5733 30.4937 36.2734 30.4463C37.5912 30.357 39.5675 29.0915 40.0107 25.3252C40.9294 17.5165 35.1604 7.5 24 7.5C14.8873 7.5 7.5 14.8873 7.5 24C7.5 33.1127 14.8873 40.5 24 40.5C27.5442 40.5 30.1001 39.7925 31.7393 39.1143C32.5608 38.7743 33.1569 38.4391 33.5352 38.2002C33.7242 38.0808 33.8593 37.9851 33.9404 37.9248C33.9807 37.8949 34.0076 37.8734 34.0215 37.8623L34.0303 37.8555L34.0254 37.8604L35.9746 40.1396L35.9707 40.1436C35.9687 40.1452 35.9663 40.1474 35.9639 40.1494C35.959 40.1535 35.9529 40.1586 35.9463 40.1641C35.933 40.1751 35.9158 40.1889 35.8955 40.2051C35.8545 40.2379 35.7991 40.2813 35.7295 40.333C35.59 40.4367 35.3926 40.5757 35.1367 40.7373C34.6244 41.0609 33.8764 41.4758 32.8857 41.8857C30.8999 42.7074 27.9557 43.5 24 43.5C13.2304 43.5 4.5 34.7696 4.5 24C4.5 13.2304 13.2304 4.5 24 4.5ZM24 17.5C20.4101 17.5 17.5 20.4101 17.5 24C17.5 27.5899 20.4101 30.5 24 30.5C27.5899 30.5 30.5 27.5899 30.5 24C30.5 20.4101 27.5899 17.5 24 17.5Z" style={{ fill: `var(--${type})` }}/>
|
|
15
|
+
</svg>
|
|
16
|
+
;
|
|
17
|
+
} else if (thick) {
|
|
18
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
19
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M24 4C37.6996 4 44.5946 16.3117 43.4863 25.7334C42.9105 30.6279 40.0027 33.7018 36.5098 33.9385C34.8186 34.0529 33.1488 33.4523 31.916 32.1963C31.5885 31.8626 31.3008 31.491 31.0537 31.0869C29.2454 32.8868 26.753 34 24 34C18.4772 34 14 29.5228 14 24C14 18.4772 18.4772 14 24 14C26.2512 14 28.3287 14.7437 30 15.999V14H34V27.0566C34 28.2713 34.3828 28.9985 34.7715 29.3945C35.1636 29.794 35.6816 29.9861 36.2402 29.9482C37.2473 29.8798 39.0895 28.8714 39.5137 25.2666C40.4052 17.6884 34.7976 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C27.4755 40 29.9664 39.3067 31.5479 38.6523C32.3412 38.324 32.9116 38.0021 33.2676 37.7773C33.4456 37.6649 33.5701 37.5766 33.6416 37.5234C33.6771 37.497 33.6995 37.4793 33.709 37.4717C33.711 37.4701 33.7139 37.4688 33.7139 37.4688L33.7041 37.4766L33.7012 37.4785L33.7002 37.4805L36.2998 40.5195L36.2949 40.5244C36.2924 40.5266 36.2891 40.5287 36.2861 40.5312C36.2802 40.5363 36.2734 40.5424 36.2656 40.5488C36.2501 40.5617 36.2307 40.5775 36.208 40.5957C36.1625 40.6321 36.1028 40.679 36.0283 40.7344C35.8791 40.8453 35.6715 40.9914 35.4043 41.1602C34.8696 41.4979 34.0962 41.926 33.0771 42.3477C31.0336 43.1933 28.0245 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4ZM24 18C20.6863 18 18 20.6863 18 24C18 27.3137 20.6863 30 24 30C27.3137 30 30 27.3137 30 24C30 20.6863 27.3137 18 24 18Z" style={{ fill: `var(--${type})` }}/>
|
|
20
|
+
</svg>
|
|
21
|
+
;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
25
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M24 4.5C37.3368 4.5 44.0703 16.4835 42.9893 25.6748C42.4324 30.4081 39.6587 33.2237 36.4766 33.4395C34.9269 33.5445 33.4012 32.9956 32.2734 31.8467C31.8219 31.3866 31.4502 30.8445 31.1641 30.2344C29.4224 32.234 26.86 33.5 24 33.5C18.7533 33.5 14.5 29.2467 14.5 24C14.5 18.7533 18.7533 14.5 24 14.5C26.515 14.5 28.8006 15.4786 30.5 17.0742V14H33.5V27.0566C33.5 28.3805 33.9195 29.2412 34.4141 29.7451C34.9112 30.2517 35.5733 30.4937 36.2734 30.4463C37.5912 30.357 39.5675 29.0915 40.0107 25.3252C40.9294 17.5165 35.1604 7.5 24 7.5C14.8873 7.5 7.5 14.8873 7.5 24C7.5 33.1127 14.8873 40.5 24 40.5C27.5442 40.5 30.1001 39.7925 31.7393 39.1143C32.5608 38.7743 33.1569 38.4391 33.5352 38.2002C33.7242 38.0808 33.8593 37.9851 33.9404 37.9248C33.9807 37.8949 34.0076 37.8734 34.0215 37.8623L34.0303 37.8555L34.0254 37.8604L35.9746 40.1396L35.9707 40.1436C35.9687 40.1452 35.9663 40.1474 35.9639 40.1494C35.959 40.1535 35.9529 40.1586 35.9463 40.1641C35.933 40.1751 35.9158 40.1889 35.8955 40.2051C35.8545 40.2379 35.7991 40.2813 35.7295 40.333C35.59 40.4367 35.3926 40.5757 35.1367 40.7373C34.6244 41.0609 33.8764 41.4758 32.8857 41.8857C30.8999 42.7074 27.9557 43.5 24 43.5C13.2304 43.5 4.5 34.7696 4.5 24C4.5 13.2304 13.2304 4.5 24 4.5ZM24 17.5C20.4101 17.5 17.5 20.4101 17.5 24C17.5 27.5899 20.4101 30.5 24 30.5C27.5899 30.5 30.5 27.5899 30.5 24C30.5 20.4101 27.5899 17.5 24 17.5Z" style={{ fill: `var(--${type})` }}/>
|
|
26
|
+
</svg>
|
|
27
|
+
;
|
|
28
|
+
}
|
|
29
|
+
);
|
|
@@ -6,21 +6,18 @@ export const IconColorCitationRecommender = forwardRef<SVGSVGElement, NewIconPro
|
|
|
6
6
|
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
7
|
if (fill && thick) {
|
|
8
8
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
10
9
|
<path opacity="0.7" d="M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z" fill="#0C893B"/>
|
|
11
10
|
<path d="M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z" stroke="#0C893B" stroke-width="3" stroke-miterlimit="10"/>
|
|
12
11
|
</svg>
|
|
13
12
|
;
|
|
14
13
|
} else if (fill) {
|
|
15
14
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
16
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
17
15
|
<path opacity="0.7" d="M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z" fill="#0C893B"/>
|
|
18
16
|
<path d="M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z" stroke="#0C893B" stroke-width="3" stroke-miterlimit="10"/>
|
|
19
17
|
</svg>
|
|
20
18
|
;
|
|
21
19
|
} else if (thick) {
|
|
22
20
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
23
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
24
21
|
<path opacity="0.7" d="M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z" fill="#0C893B"/>
|
|
25
22
|
<path d="M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z" stroke="#0C893B" stroke-width="3" stroke-miterlimit="10"/>
|
|
26
23
|
</svg>
|
|
@@ -28,7 +25,6 @@ export const IconColorCitationRecommender = forwardRef<SVGSVGElement, NewIconPro
|
|
|
28
25
|
}
|
|
29
26
|
|
|
30
27
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
31
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
32
28
|
<path opacity="0.7" d="M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z" fill="#0C893B"/>
|
|
33
29
|
<path d="M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z" stroke="#0C893B" stroke-width="3" stroke-miterlimit="10"/>
|
|
34
30
|
</svg>
|
|
@@ -6,7 +6,6 @@ export const IconColorHypothesisGenerator = forwardRef<SVGSVGElement, NewIconPro
|
|
|
6
6
|
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
7
|
if (fill && thick) {
|
|
8
8
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
10
9
|
<g opacity="0.7">
|
|
11
10
|
<path d="M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z" fill="#0C893B"/>
|
|
12
11
|
<path d="M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z" fill="#0C893B"/>
|
|
@@ -16,7 +15,6 @@ export const IconColorHypothesisGenerator = forwardRef<SVGSVGElement, NewIconPro
|
|
|
16
15
|
;
|
|
17
16
|
} else if (fill) {
|
|
18
17
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
19
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
20
18
|
<g opacity="0.7">
|
|
21
19
|
<path d="M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z" fill="#0C893B"/>
|
|
22
20
|
<path d="M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z" fill="#0C893B"/>
|
|
@@ -26,7 +24,6 @@ export const IconColorHypothesisGenerator = forwardRef<SVGSVGElement, NewIconPro
|
|
|
26
24
|
;
|
|
27
25
|
} else if (thick) {
|
|
28
26
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
29
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
30
27
|
<g opacity="0.7">
|
|
31
28
|
<path d="M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z" fill="#0C893B"/>
|
|
32
29
|
<path d="M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z" fill="#0C893B"/>
|
|
@@ -37,7 +34,6 @@ export const IconColorHypothesisGenerator = forwardRef<SVGSVGElement, NewIconPro
|
|
|
37
34
|
}
|
|
38
35
|
|
|
39
36
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
40
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
41
37
|
<g opacity="0.7">
|
|
42
38
|
<path d="M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z" fill="#0C893B"/>
|
|
43
39
|
<path d="M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z" fill="#0C893B"/>
|
|
@@ -6,7 +6,6 @@ export const IconColorLiteratureReview = forwardRef<SVGSVGElement, NewIconProps>
|
|
|
6
6
|
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
7
|
if (fill && thick) {
|
|
8
8
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
10
9
|
<path fillRule="evenodd" clipRule="evenodd" d="M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
11
10
|
<path d="M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
12
11
|
<path d="M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -17,7 +16,6 @@ export const IconColorLiteratureReview = forwardRef<SVGSVGElement, NewIconProps>
|
|
|
17
16
|
;
|
|
18
17
|
} else if (fill) {
|
|
19
18
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
20
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
21
19
|
<path fillRule="evenodd" clipRule="evenodd" d="M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
22
20
|
<path d="M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
23
21
|
<path d="M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -28,7 +26,6 @@ export const IconColorLiteratureReview = forwardRef<SVGSVGElement, NewIconProps>
|
|
|
28
26
|
;
|
|
29
27
|
} else if (thick) {
|
|
30
28
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
31
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
32
29
|
<path fillRule="evenodd" clipRule="evenodd" d="M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
33
30
|
<path d="M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
34
31
|
<path d="M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -40,7 +37,6 @@ export const IconColorLiteratureReview = forwardRef<SVGSVGElement, NewIconProps>
|
|
|
40
37
|
}
|
|
41
38
|
|
|
42
39
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
43
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
44
40
|
<path fillRule="evenodd" clipRule="evenodd" d="M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
45
41
|
<path d="M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
46
42
|
<path d="M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -6,7 +6,6 @@ export const IconColorPeerReview = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
6
6
|
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
7
|
if (fill && thick) {
|
|
8
8
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
10
9
|
<path d="M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
11
10
|
<path d="M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
12
11
|
<path d="M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -16,7 +15,6 @@ export const IconColorPeerReview = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
16
15
|
;
|
|
17
16
|
} else if (fill) {
|
|
18
17
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
19
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
20
18
|
<path d="M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
21
19
|
<path d="M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
22
20
|
<path d="M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -26,7 +24,6 @@ export const IconColorPeerReview = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
26
24
|
;
|
|
27
25
|
} else if (thick) {
|
|
28
26
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
29
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
30
27
|
<path d="M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
31
28
|
<path d="M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
32
29
|
<path d="M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -37,7 +34,6 @@ export const IconColorPeerReview = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
37
34
|
}
|
|
38
35
|
|
|
39
36
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
40
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
41
37
|
<path d="M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
42
38
|
<path d="M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
43
39
|
<path d="M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -6,21 +6,18 @@ export const IconColorResearchTracer = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
6
6
|
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
7
|
if (fill && thick) {
|
|
8
8
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
10
9
|
<circle cx="24" cy="24.2402" r="10.8" transform="rotate(90 24 24.2402)" fill="#0C893B"/>
|
|
11
10
|
<path fillRule="evenodd" clipRule="evenodd" d="M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
12
11
|
</svg>
|
|
13
12
|
;
|
|
14
13
|
} else if (fill) {
|
|
15
14
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
16
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
17
15
|
<circle cx="24" cy="24.2402" r="10.8" transform="rotate(90 24 24.2402)" fill="#0C893B"/>
|
|
18
16
|
<path fillRule="evenodd" clipRule="evenodd" d="M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
19
17
|
</svg>
|
|
20
18
|
;
|
|
21
19
|
} else if (thick) {
|
|
22
20
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
23
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
24
21
|
<circle cx="24" cy="24.2402" r="10.8" transform="rotate(90 24 24.2402)" fill="#0C893B"/>
|
|
25
22
|
<path fillRule="evenodd" clipRule="evenodd" d="M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
26
23
|
</svg>
|
|
@@ -28,7 +25,6 @@ export const IconColorResearchTracer = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
28
25
|
}
|
|
29
26
|
|
|
30
27
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
31
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
32
28
|
<circle cx="24" cy="24.2402" r="10.8" transform="rotate(90 24 24.2402)" fill="#0C893B"/>
|
|
33
29
|
<path fillRule="evenodd" clipRule="evenodd" d="M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
34
30
|
</svg>
|
|
@@ -6,7 +6,6 @@ export const IconColorSurveySimulator = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
6
6
|
({ fill = false, thick = false, size = 'm', type = 'neutral-label-primary', className, fillType = 'inverse-label-primary', ...props }, ref) => {
|
|
7
7
|
if (fill && thick) {
|
|
8
8
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
9
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
10
9
|
<path d="M31.2 16.8H16.8V31.2H31.2V16.8Z" fill="#0C893B"/>
|
|
11
10
|
<path fillRule="evenodd" clipRule="evenodd" d="M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
12
11
|
<path fillRule="evenodd" clipRule="evenodd" d="M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -16,7 +15,6 @@ export const IconColorSurveySimulator = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
16
15
|
;
|
|
17
16
|
} else if (fill) {
|
|
18
17
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
19
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
20
18
|
<path d="M31.2 16.8H16.8V31.2H31.2V16.8Z" fill="#0C893B"/>
|
|
21
19
|
<path fillRule="evenodd" clipRule="evenodd" d="M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
22
20
|
<path fillRule="evenodd" clipRule="evenodd" d="M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -26,7 +24,6 @@ export const IconColorSurveySimulator = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
26
24
|
;
|
|
27
25
|
} else if (thick) {
|
|
28
26
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
29
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
30
27
|
<path d="M31.2 16.8H16.8V31.2H31.2V16.8Z" fill="#0C893B"/>
|
|
31
28
|
<path fillRule="evenodd" clipRule="evenodd" d="M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
32
29
|
<path fillRule="evenodd" clipRule="evenodd" d="M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
@@ -37,7 +34,6 @@ export const IconColorSurveySimulator = forwardRef<SVGSVGElement, NewIconProps>(
|
|
|
37
34
|
}
|
|
38
35
|
|
|
39
36
|
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
40
|
-
<rect width="48" height="48" style={{ fill: `var(--${fillType})` }}/>
|
|
41
37
|
<path d="M31.2 16.8H16.8V31.2H31.2V16.8Z" fill="#0C893B"/>
|
|
42
38
|
<path fillRule="evenodd" clipRule="evenodd" d="M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z" fill="#0C893B" fill-opacity="0.7"/>
|
|
43
39
|
<path fillRule="evenodd" clipRule="evenodd" d="M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z" fill="#0C893B" fill-opacity="0.7"/>
|
package/index.tsx
CHANGED
|
@@ -205,6 +205,7 @@ import { IconColorPeerReview } from './assets/color-peer-review';
|
|
|
205
205
|
import { IconColorSurveySimulator } from './assets/color-survey-simulator';
|
|
206
206
|
import { IconColorLiteratureReview } from './assets/color-literature-review';
|
|
207
207
|
import { IconColorResearchTracer } from './assets/color-research-tracer';
|
|
208
|
+
import { IconAtSign } from './assets/at-sign';
|
|
208
209
|
export { IconArrowUpward,
|
|
209
210
|
IconArrowDownward,
|
|
210
211
|
IconArrowBack,
|
|
@@ -409,9 +410,10 @@ IconColorCitationRecommender,
|
|
|
409
410
|
IconColorPeerReview,
|
|
410
411
|
IconColorSurveySimulator,
|
|
411
412
|
IconColorLiteratureReview,
|
|
412
|
-
IconColorResearchTracer,
|
|
413
|
+
IconColorResearchTracer,
|
|
414
|
+
IconAtSign, }
|
|
413
415
|
|
|
414
|
-
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-peer-review" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer";
|
|
416
|
+
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-peer-review" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer" | "at-sign";
|
|
415
417
|
|
|
416
418
|
export type IconSizeKey = keyof typeof iconSizeMap;
|
|
417
419
|
|
|
@@ -620,7 +622,8 @@ export const IconMap: Record<IconName, React.ForwardRefExoticComponent<any>> = {
|
|
|
620
622
|
"color-peer-review": IconColorPeerReview,
|
|
621
623
|
"color-survey-simulator": IconColorSurveySimulator,
|
|
622
624
|
"color-literature-review": IconColorLiteratureReview,
|
|
623
|
-
"color-research-tracer": IconColorResearchTracer
|
|
625
|
+
"color-research-tracer": IconColorResearchTracer,
|
|
626
|
+
"at-sign": IconAtSign
|
|
624
627
|
} as const;
|
|
625
628
|
|
|
626
629
|
export interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
|
package/lib/index.d.ts
CHANGED
|
@@ -411,7 +411,9 @@ declare const IconColorLiteratureReview: React.ForwardRefExoticComponent<Omit<Ne
|
|
|
411
411
|
|
|
412
412
|
declare const IconColorResearchTracer: React.ForwardRefExoticComponent<Omit<NewIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
413
413
|
|
|
414
|
-
|
|
414
|
+
declare const IconAtSign: React.ForwardRefExoticComponent<Omit<NewIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
415
|
+
|
|
416
|
+
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-peer-review" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer" | "at-sign";
|
|
415
417
|
type IconSizeKey = keyof typeof iconSizeMap;
|
|
416
418
|
declare const IconMap: Record<IconName, React.ForwardRefExoticComponent<any>>;
|
|
417
419
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
|
|
@@ -434,4 +436,4 @@ interface NewIconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
|
434
436
|
type IconComponentType = React.ForwardRefExoticComponent<Omit<NewIconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
|
|
435
437
|
declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
436
438
|
|
|
437
|
-
export { Icon, IconAddClock, IconAddToFolder, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, 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, IconMap, 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, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut, type NewIconProps };
|
|
439
|
+
export { Icon, IconAddClock, IconAddToFolder, 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, IconMap, 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, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut, type NewIconProps };
|
package/lib/index.js
CHANGED
|
@@ -1302,7 +1302,7 @@ var require_react_development = __commonJS({
|
|
|
1302
1302
|
return lazyType;
|
|
1303
1303
|
}
|
|
1304
1304
|
__name(lazy, "lazy");
|
|
1305
|
-
function
|
|
1305
|
+
function forwardRef208(render) {
|
|
1306
1306
|
{
|
|
1307
1307
|
if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
|
|
1308
1308
|
error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).");
|
|
@@ -1341,7 +1341,7 @@ var require_react_development = __commonJS({
|
|
|
1341
1341
|
}
|
|
1342
1342
|
return elementType;
|
|
1343
1343
|
}
|
|
1344
|
-
__name(
|
|
1344
|
+
__name(forwardRef208, "forwardRef");
|
|
1345
1345
|
var REACT_MODULE_REFERENCE;
|
|
1346
1346
|
{
|
|
1347
1347
|
REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
|
|
@@ -2247,7 +2247,7 @@ var require_react_development = __commonJS({
|
|
|
2247
2247
|
exports.createElement = createElement$1;
|
|
2248
2248
|
exports.createFactory = createFactory;
|
|
2249
2249
|
exports.createRef = createRef;
|
|
2250
|
-
exports.forwardRef =
|
|
2250
|
+
exports.forwardRef = forwardRef208;
|
|
2251
2251
|
exports.isValidElement = isValidElement;
|
|
2252
2252
|
exports.lazy = lazy;
|
|
2253
2253
|
exports.memo = memo;
|
|
@@ -2322,7 +2322,7 @@ var require_react_jsx_runtime_development = __commonJS({
|
|
|
2322
2322
|
if (process.env.NODE_ENV !== "production") {
|
|
2323
2323
|
(function() {
|
|
2324
2324
|
"use strict";
|
|
2325
|
-
var
|
|
2325
|
+
var React208 = require_react();
|
|
2326
2326
|
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
|
2327
2327
|
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
|
2328
2328
|
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
@@ -2349,7 +2349,7 @@ var require_react_jsx_runtime_development = __commonJS({
|
|
|
2349
2349
|
return null;
|
|
2350
2350
|
}
|
|
2351
2351
|
__name(getIteratorFn, "getIteratorFn");
|
|
2352
|
-
var ReactSharedInternals =
|
|
2352
|
+
var ReactSharedInternals = React208.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
2353
2353
|
function error(format) {
|
|
2354
2354
|
{
|
|
2355
2355
|
{
|
|
@@ -3238,10 +3238,10 @@ var require_react_jsx_runtime_development = __commonJS({
|
|
|
3238
3238
|
}
|
|
3239
3239
|
}
|
|
3240
3240
|
__name(jsxWithValidationDynamic, "jsxWithValidationDynamic");
|
|
3241
|
-
var
|
|
3241
|
+
var jsx208 = jsxWithValidationDynamic;
|
|
3242
3242
|
var jsxs146 = jsxWithValidationStatic;
|
|
3243
3243
|
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
3244
|
-
exports.jsx =
|
|
3244
|
+
exports.jsx = jsx208;
|
|
3245
3245
|
exports.jsxs = jsxs146;
|
|
3246
3246
|
})();
|
|
3247
3247
|
}
|
|
@@ -3285,6 +3285,7 @@ __export(index_exports, {
|
|
|
3285
3285
|
IconArrowUpLeft: () => IconArrowUpLeft,
|
|
3286
3286
|
IconArrowUpRight: () => IconArrowUpRight,
|
|
3287
3287
|
IconArrowUpward: () => IconArrowUpward,
|
|
3288
|
+
IconAtSign: () => IconAtSign,
|
|
3288
3289
|
IconBag: () => IconBag,
|
|
3289
3290
|
IconBalance: () => IconBalance,
|
|
3290
3291
|
IconBell: () => IconBell,
|
|
@@ -3472,7 +3473,7 @@ __export(index_exports, {
|
|
|
3472
3473
|
IconZoomOut: () => IconZoomOut
|
|
3473
3474
|
});
|
|
3474
3475
|
module.exports = __toCommonJS(index_exports);
|
|
3475
|
-
var
|
|
3476
|
+
var import_react207 = __toESM(require_react());
|
|
3476
3477
|
|
|
3477
3478
|
// assets/arrow-upward/index.tsx
|
|
3478
3479
|
var import_react = __toESM(require_react());
|
|
@@ -8848,7 +8849,6 @@ var IconColorHypothesisGenerator = (0, import_react200.forwardRef)(
|
|
|
8848
8849
|
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
8849
8850
|
if (fill && thick) {
|
|
8850
8851
|
return /* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("svg", { width: import_design_token_primitive200.iconSizeMap[size], height: import_design_token_primitive200.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8851
|
-
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8852
8852
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("g", { opacity: "0.7", children: [
|
|
8853
8853
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z", fill: "#0C893B" }),
|
|
8854
8854
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z", fill: "#0C893B" })
|
|
@@ -8857,7 +8857,6 @@ var IconColorHypothesisGenerator = (0, import_react200.forwardRef)(
|
|
|
8857
8857
|
] });
|
|
8858
8858
|
} else if (fill) {
|
|
8859
8859
|
return /* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("svg", { width: import_design_token_primitive200.iconSizeMap[size], height: import_design_token_primitive200.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8860
|
-
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8861
8860
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("g", { opacity: "0.7", children: [
|
|
8862
8861
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z", fill: "#0C893B" }),
|
|
8863
8862
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z", fill: "#0C893B" })
|
|
@@ -8866,7 +8865,6 @@ var IconColorHypothesisGenerator = (0, import_react200.forwardRef)(
|
|
|
8866
8865
|
] });
|
|
8867
8866
|
} else if (thick) {
|
|
8868
8867
|
return /* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("svg", { width: import_design_token_primitive200.iconSizeMap[size], height: import_design_token_primitive200.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8869
|
-
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8870
8868
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("g", { opacity: "0.7", children: [
|
|
8871
8869
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z", fill: "#0C893B" }),
|
|
8872
8870
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z", fill: "#0C893B" })
|
|
@@ -8875,7 +8873,6 @@ var IconColorHypothesisGenerator = (0, import_react200.forwardRef)(
|
|
|
8875
8873
|
] });
|
|
8876
8874
|
}
|
|
8877
8875
|
return /* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("svg", { width: import_design_token_primitive200.iconSizeMap[size], height: import_design_token_primitive200.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8878
|
-
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8879
8876
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsxs)("g", { opacity: "0.7", children: [
|
|
8880
8877
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 29.2002V43.2002H31.1016V29.2002H45.1016Z", fill: "#0C893B" }),
|
|
8881
8878
|
/* @__PURE__ */ (0, import_jsx_runtime200.jsx)("path", { d: "M45.1016 6.39844V20.3984H31.1016V6.39844H45.1016Z", fill: "#0C893B" })
|
|
@@ -8893,25 +8890,21 @@ var IconColorCitationRecommender = (0, import_react201.forwardRef)(
|
|
|
8893
8890
|
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
8894
8891
|
if (fill && thick) {
|
|
8895
8892
|
return /* @__PURE__ */ (0, import_jsx_runtime201.jsxs)("svg", { width: import_design_token_primitive201.iconSizeMap[size], height: import_design_token_primitive201.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8896
|
-
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8897
8893
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { opacity: "0.7", d: "M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z", fill: "#0C893B" }),
|
|
8898
8894
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { d: "M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z", stroke: "#0C893B", "stroke-width": "3", "stroke-miterlimit": "10" })
|
|
8899
8895
|
] });
|
|
8900
8896
|
} else if (fill) {
|
|
8901
8897
|
return /* @__PURE__ */ (0, import_jsx_runtime201.jsxs)("svg", { width: import_design_token_primitive201.iconSizeMap[size], height: import_design_token_primitive201.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8902
|
-
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8903
8898
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { opacity: "0.7", d: "M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z", fill: "#0C893B" }),
|
|
8904
8899
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { d: "M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z", stroke: "#0C893B", "stroke-width": "3", "stroke-miterlimit": "10" })
|
|
8905
8900
|
] });
|
|
8906
8901
|
} else if (thick) {
|
|
8907
8902
|
return /* @__PURE__ */ (0, import_jsx_runtime201.jsxs)("svg", { width: import_design_token_primitive201.iconSizeMap[size], height: import_design_token_primitive201.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8908
|
-
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8909
8903
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { opacity: "0.7", d: "M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z", fill: "#0C893B" }),
|
|
8910
8904
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { d: "M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z", stroke: "#0C893B", "stroke-width": "3", "stroke-miterlimit": "10" })
|
|
8911
8905
|
] });
|
|
8912
8906
|
}
|
|
8913
8907
|
return /* @__PURE__ */ (0, import_jsx_runtime201.jsxs)("svg", { width: import_design_token_primitive201.iconSizeMap[size], height: import_design_token_primitive201.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8914
|
-
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8915
8908
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { opacity: "0.7", d: "M42 37.1989L16.8 26.3499V3.59888L42 14.4479V37.1989Z", fill: "#0C893B" }),
|
|
8916
8909
|
/* @__PURE__ */ (0, import_jsx_runtime201.jsx)("path", { d: "M28.8011 43.201L8.40106 33.9019V14.401L28.8011 23.7001V43.201Z", stroke: "#0C893B", "stroke-width": "3", "stroke-miterlimit": "10" })
|
|
8917
8910
|
] });
|
|
@@ -8926,7 +8919,6 @@ var IconColorPeerReview = (0, import_react202.forwardRef)(
|
|
|
8926
8919
|
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
8927
8920
|
if (fill && thick) {
|
|
8928
8921
|
return /* @__PURE__ */ (0, import_jsx_runtime202.jsxs)("svg", { width: import_design_token_primitive202.iconSizeMap[size], height: import_design_token_primitive202.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8929
|
-
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8930
8922
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8931
8923
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8932
8924
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8935,7 +8927,6 @@ var IconColorPeerReview = (0, import_react202.forwardRef)(
|
|
|
8935
8927
|
] });
|
|
8936
8928
|
} else if (fill) {
|
|
8937
8929
|
return /* @__PURE__ */ (0, import_jsx_runtime202.jsxs)("svg", { width: import_design_token_primitive202.iconSizeMap[size], height: import_design_token_primitive202.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8938
|
-
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8939
8930
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8940
8931
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8941
8932
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8944,7 +8935,6 @@ var IconColorPeerReview = (0, import_react202.forwardRef)(
|
|
|
8944
8935
|
] });
|
|
8945
8936
|
} else if (thick) {
|
|
8946
8937
|
return /* @__PURE__ */ (0, import_jsx_runtime202.jsxs)("svg", { width: import_design_token_primitive202.iconSizeMap[size], height: import_design_token_primitive202.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8947
|
-
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8948
8938
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8949
8939
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8950
8940
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8953,7 +8943,6 @@ var IconColorPeerReview = (0, import_react202.forwardRef)(
|
|
|
8953
8943
|
] });
|
|
8954
8944
|
}
|
|
8955
8945
|
return /* @__PURE__ */ (0, import_jsx_runtime202.jsxs)("svg", { width: import_design_token_primitive202.iconSizeMap[size], height: import_design_token_primitive202.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8956
|
-
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8957
8946
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3984 39.5996H3.59863V34.7998H44.3984V39.5996Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8958
8947
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M24.7588 26.3994H3.59863V21.5986H23.417L24.7588 26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8959
8948
|
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)("path", { d: "M44.3994 26.3994H33.6074L33.7451 26.1445L44.3994 22.3027V26.3994Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8971,7 +8960,6 @@ var IconColorSurveySimulator = (0, import_react203.forwardRef)(
|
|
|
8971
8960
|
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
8972
8961
|
if (fill && thick) {
|
|
8973
8962
|
return /* @__PURE__ */ (0, import_jsx_runtime203.jsxs)("svg", { width: import_design_token_primitive203.iconSizeMap[size], height: import_design_token_primitive203.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8974
|
-
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8975
8963
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { d: "M31.2 16.8H16.8V31.2H31.2V16.8Z", fill: "#0C893B" }),
|
|
8976
8964
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8977
8965
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8980,7 +8968,6 @@ var IconColorSurveySimulator = (0, import_react203.forwardRef)(
|
|
|
8980
8968
|
] });
|
|
8981
8969
|
} else if (fill) {
|
|
8982
8970
|
return /* @__PURE__ */ (0, import_jsx_runtime203.jsxs)("svg", { width: import_design_token_primitive203.iconSizeMap[size], height: import_design_token_primitive203.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8983
|
-
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8984
8971
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { d: "M31.2 16.8H16.8V31.2H31.2V16.8Z", fill: "#0C893B" }),
|
|
8985
8972
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8986
8973
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8989,7 +8976,6 @@ var IconColorSurveySimulator = (0, import_react203.forwardRef)(
|
|
|
8989
8976
|
] });
|
|
8990
8977
|
} else if (thick) {
|
|
8991
8978
|
return /* @__PURE__ */ (0, import_jsx_runtime203.jsxs)("svg", { width: import_design_token_primitive203.iconSizeMap[size], height: import_design_token_primitive203.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
8992
|
-
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
8993
8979
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { d: "M31.2 16.8H16.8V31.2H31.2V16.8Z", fill: "#0C893B" }),
|
|
8994
8980
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
8995
8981
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -8998,7 +8984,6 @@ var IconColorSurveySimulator = (0, import_react203.forwardRef)(
|
|
|
8998
8984
|
] });
|
|
8999
8985
|
}
|
|
9000
8986
|
return /* @__PURE__ */ (0, import_jsx_runtime203.jsxs)("svg", { width: import_design_token_primitive203.iconSizeMap[size], height: import_design_token_primitive203.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9001
|
-
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9002
8987
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { d: "M31.2 16.8H16.8V31.2H31.2V16.8Z", fill: "#0C893B" }),
|
|
9003
8988
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 33.5986C27.3136 33.5986 29.9998 36.2851 30 39.5986C30 42.9123 27.3137 45.5986 24 45.5986C20.6863 45.5986 18 42.9123 18 39.5986C18.0002 36.2851 20.6864 33.5986 24 33.5986ZM24 36.5986C22.3433 36.5986 21.0002 37.9419 21 39.5986C21 41.2555 22.3431 42.5986 24 42.5986C25.6569 42.5986 27 41.2555 27 39.5986C26.9998 37.9419 25.6567 36.5986 24 36.5986Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9004
8989
|
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.40137 18C11.7149 18.0002 14.4014 20.6864 14.4014 24C14.4014 27.3136 11.7149 29.9998 8.40137 30C5.08766 30 2.40137 27.3137 2.40137 24C2.40137 20.6863 5.08766 18 8.40137 18ZM8.40137 21C6.74451 21 5.40137 22.3431 5.40137 24C5.40137 25.6569 6.74451 27 8.40137 27C10.0581 26.9998 11.4014 25.6568 11.4014 24C11.4014 22.3432 10.0581 21.0002 8.40137 21Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -9016,7 +9001,6 @@ var IconColorLiteratureReview = (0, import_react204.forwardRef)(
|
|
|
9016
9001
|
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
9017
9002
|
if (fill && thick) {
|
|
9018
9003
|
return /* @__PURE__ */ (0, import_jsx_runtime204.jsxs)("svg", { width: import_design_token_primitive204.iconSizeMap[size], height: import_design_token_primitive204.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9019
|
-
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9020
9004
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9021
9005
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9022
9006
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -9026,7 +9010,6 @@ var IconColorLiteratureReview = (0, import_react204.forwardRef)(
|
|
|
9026
9010
|
] });
|
|
9027
9011
|
} else if (fill) {
|
|
9028
9012
|
return /* @__PURE__ */ (0, import_jsx_runtime204.jsxs)("svg", { width: import_design_token_primitive204.iconSizeMap[size], height: import_design_token_primitive204.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9029
|
-
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9030
9013
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9031
9014
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9032
9015
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -9036,7 +9019,6 @@ var IconColorLiteratureReview = (0, import_react204.forwardRef)(
|
|
|
9036
9019
|
] });
|
|
9037
9020
|
} else if (thick) {
|
|
9038
9021
|
return /* @__PURE__ */ (0, import_jsx_runtime204.jsxs)("svg", { width: import_design_token_primitive204.iconSizeMap[size], height: import_design_token_primitive204.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9039
|
-
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9040
9022
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9041
9023
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9042
9024
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -9046,7 +9028,6 @@ var IconColorLiteratureReview = (0, import_react204.forwardRef)(
|
|
|
9046
9028
|
] });
|
|
9047
9029
|
}
|
|
9048
9030
|
return /* @__PURE__ */ (0, import_jsx_runtime204.jsxs)("svg", { width: import_design_token_primitive204.iconSizeMap[size], height: import_design_token_primitive204.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9049
|
-
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9050
9031
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M37.9336 28.7998C42.3152 28.7998 45.868 32.3518 45.8682 36.7334C45.8682 41.1151 42.3153 44.668 37.9336 44.668C34.1075 44.6679 30.9143 41.9588 30.166 38.3545H15.5986V35.3545H30.1221C30.7751 31.6305 34.0226 28.7999 37.9336 28.7998ZM37.2139 37.8594L35.1426 35.9199L34.1074 37.0254L37.2139 39.9355L42.3555 35.123L41.3203 34.0176L37.2139 37.8594Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9051
9032
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M33.4619 17.2607L17.2617 33.4609L15.1406 31.3398L31.3408 15.1396L33.4619 17.2607Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
9052
9033
|
/* @__PURE__ */ (0, import_jsx_runtime204.jsx)("path", { d: "M32.3994 12.2998H16.7998V9.2998H32.3994V12.2998Z", fill: "#0C893B", "fill-opacity": "0.7" }),
|
|
@@ -9065,33 +9046,46 @@ var IconColorResearchTracer = (0, import_react205.forwardRef)(
|
|
|
9065
9046
|
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
9066
9047
|
if (fill && thick) {
|
|
9067
9048
|
return /* @__PURE__ */ (0, import_jsx_runtime205.jsxs)("svg", { width: import_design_token_primitive205.iconSizeMap[size], height: import_design_token_primitive205.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9068
|
-
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9069
9049
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("circle", { cx: "24", cy: "24.2402", r: "10.8", transform: "rotate(90 24 24.2402)", fill: "#0C893B" }),
|
|
9070
9050
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z", fill: "#0C893B", "fill-opacity": "0.7" })
|
|
9071
9051
|
] });
|
|
9072
9052
|
} else if (fill) {
|
|
9073
9053
|
return /* @__PURE__ */ (0, import_jsx_runtime205.jsxs)("svg", { width: import_design_token_primitive205.iconSizeMap[size], height: import_design_token_primitive205.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9074
|
-
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9075
9054
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("circle", { cx: "24", cy: "24.2402", r: "10.8", transform: "rotate(90 24 24.2402)", fill: "#0C893B" }),
|
|
9076
9055
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z", fill: "#0C893B", "fill-opacity": "0.7" })
|
|
9077
9056
|
] });
|
|
9078
9057
|
} else if (thick) {
|
|
9079
9058
|
return /* @__PURE__ */ (0, import_jsx_runtime205.jsxs)("svg", { width: import_design_token_primitive205.iconSizeMap[size], height: import_design_token_primitive205.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9080
|
-
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9081
9059
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("circle", { cx: "24", cy: "24.2402", r: "10.8", transform: "rotate(90 24 24.2402)", fill: "#0C893B" }),
|
|
9082
9060
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z", fill: "#0C893B", "fill-opacity": "0.7" })
|
|
9083
9061
|
] });
|
|
9084
9062
|
}
|
|
9085
9063
|
return /* @__PURE__ */ (0, import_jsx_runtime205.jsxs)("svg", { width: import_design_token_primitive205.iconSizeMap[size], height: import_design_token_primitive205.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
9086
|
-
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("rect", { width: "48", height: "48", style: { fill: `var(--${fillType})` } }),
|
|
9087
9064
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("circle", { cx: "24", cy: "24.2402", r: "10.8", transform: "rotate(90 24 24.2402)", fill: "#0C893B" }),
|
|
9088
9065
|
/* @__PURE__ */ (0, import_jsx_runtime205.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M39.001 3.60059C41.89 3.6008 44.25 5.87044 44.3945 8.72363L44.4014 9.00098C44.4011 11.983 41.983 14.4011 39.001 14.4014L38.7236 14.3945C37.8803 14.3518 37.0885 14.1147 36.3906 13.7285L26.1201 23.999L36.3916 34.2705C36.3887 34.2721 36.3857 34.2738 36.3828 34.2754C37.0825 33.8867 37.8773 33.6483 38.7236 33.6055L39.001 33.5986C41.983 33.5989 44.4011 36.017 44.4014 38.999L44.3945 39.2764C44.25 42.1296 41.89 44.3992 39.001 44.3994L38.7236 44.3926C35.8704 44.248 33.6008 41.8881 33.6006 38.999L33.6074 38.7207C33.6502 37.8791 33.8856 37.0883 34.2705 36.3916L23.999 26.1201L13.7295 36.3906C14.1571 37.164 14.4013 38.0529 14.4014 38.999L14.3945 39.2764C14.25 42.1296 11.89 44.3992 9.00098 44.3994L8.72363 44.3926C5.87044 44.248 3.60079 41.8881 3.60059 38.999L3.60742 38.7207C3.74762 35.9597 5.96251 33.7453 8.72363 33.6055L9.00098 33.5986C9.95754 33.5987 10.8554 33.8487 11.6348 34.2852C11.6259 34.2802 11.6173 34.2745 11.6084 34.2695L21.8779 23.999L11.6084 13.7295C10.8352 14.1569 9.94677 14.4013 9.00098 14.4014L8.72363 14.3945C5.96251 14.2546 3.74762 12.0403 3.60742 9.2793L3.60059 9.00098C3.60079 6.11191 5.87044 3.75197 8.72363 3.60742L9.00098 3.60059C11.89 3.6008 14.25 5.87044 14.3945 8.72363L14.4014 9.00098C14.4013 9.94677 14.1569 10.8352 13.7295 11.6084L23.999 21.8779L34.2705 11.6064C33.8861 10.9101 33.6501 10.1203 33.6074 9.2793L33.6006 9.00098C33.6008 6.11191 35.8704 3.75197 38.7236 3.60742L39.001 3.60059ZM9.00098 36.5986C7.6758 36.5988 6.60181 37.6739 6.60156 38.999C6.60177 40.3242 7.67578 41.3992 9.00098 41.3994C10.3262 41.3992 11.4012 40.3242 11.4014 38.999C11.4011 37.6739 10.3261 36.5989 9.00098 36.5986ZM39.001 36.5986C37.6758 36.5988 36.6018 37.6739 36.6016 38.999C36.6018 40.3242 37.6758 41.3992 39.001 41.3994C40.3262 41.3992 41.4012 40.3242 41.4014 38.999C41.4011 37.6739 40.3261 36.5989 39.001 36.5986ZM12.3037 34.7285C12.2845 34.7136 12.2665 34.6972 12.2471 34.6826L12.2314 34.6719C12.256 34.6902 12.2795 34.7098 12.3037 34.7285ZM9.00098 6.60059C7.67578 6.6008 6.60177 7.67578 6.60156 9.00098C6.60181 10.3261 7.6758 11.4012 9.00098 11.4014C10.3261 11.4011 11.4011 10.3261 11.4014 9.00098C11.4012 7.67578 10.3262 6.6008 9.00098 6.60059ZM39.001 6.60059C37.6758 6.6008 36.6018 7.67578 36.6016 9.00098C36.6018 10.3261 37.6758 11.4012 39.001 11.4014C40.3261 11.4011 41.4011 10.3261 41.4014 9.00098C41.4012 7.67578 40.3262 6.6008 39.001 6.60059Z", fill: "#0C893B", "fill-opacity": "0.7" })
|
|
9089
9066
|
] });
|
|
9090
9067
|
}
|
|
9091
9068
|
);
|
|
9092
9069
|
|
|
9093
|
-
// index.tsx
|
|
9070
|
+
// assets/at-sign/index.tsx
|
|
9071
|
+
var import_react206 = __toESM(require_react());
|
|
9072
|
+
var import_design_token_primitive206 = require("@liner-fe/design-token-primitive");
|
|
9094
9073
|
var import_jsx_runtime206 = __toESM(require_jsx_runtime());
|
|
9074
|
+
var IconAtSign = (0, import_react206.forwardRef)(
|
|
9075
|
+
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
9076
|
+
if (fill && thick) {
|
|
9077
|
+
return /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("svg", { width: import_design_token_primitive206.iconSizeMap[size], height: import_design_token_primitive206.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 4.5C37.3368 4.5 44.0703 16.4835 42.9893 25.6748C42.4324 30.4081 39.6587 33.2237 36.4766 33.4395C34.9269 33.5445 33.4012 32.9956 32.2734 31.8467C31.8219 31.3866 31.4502 30.8445 31.1641 30.2344C29.4224 32.234 26.86 33.5 24 33.5C18.7533 33.5 14.5 29.2467 14.5 24C14.5 18.7533 18.7533 14.5 24 14.5C26.515 14.5 28.8006 15.4786 30.5 17.0742V14H33.5V27.0566C33.5 28.3805 33.9195 29.2412 34.4141 29.7451C34.9112 30.2517 35.5733 30.4937 36.2734 30.4463C37.5912 30.357 39.5675 29.0915 40.0107 25.3252C40.9294 17.5165 35.1604 7.5 24 7.5C14.8873 7.5 7.5 14.8873 7.5 24C7.5 33.1127 14.8873 40.5 24 40.5C27.5442 40.5 30.1001 39.7925 31.7393 39.1143C32.5608 38.7743 33.1569 38.4391 33.5352 38.2002C33.7242 38.0808 33.8593 37.9851 33.9404 37.9248C33.9807 37.8949 34.0076 37.8734 34.0215 37.8623L34.0303 37.8555L34.0254 37.8604L35.9746 40.1396L35.9707 40.1436C35.9687 40.1452 35.9663 40.1474 35.9639 40.1494C35.959 40.1535 35.9529 40.1586 35.9463 40.1641C35.933 40.1751 35.9158 40.1889 35.8955 40.2051C35.8545 40.2379 35.7991 40.2813 35.7295 40.333C35.59 40.4367 35.3926 40.5757 35.1367 40.7373C34.6244 41.0609 33.8764 41.4758 32.8857 41.8857C30.8999 42.7074 27.9557 43.5 24 43.5C13.2304 43.5 4.5 34.7696 4.5 24C4.5 13.2304 13.2304 4.5 24 4.5ZM24 17.5C20.4101 17.5 17.5 20.4101 17.5 24C17.5 27.5899 20.4101 30.5 24 30.5C27.5899 30.5 30.5 27.5899 30.5 24C30.5 20.4101 27.5899 17.5 24 17.5Z", style: { fill: `var(--${type})` } }) });
|
|
9078
|
+
} else if (fill) {
|
|
9079
|
+
return /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("svg", { width: import_design_token_primitive206.iconSizeMap[size], height: import_design_token_primitive206.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 4.5C37.3368 4.5 44.0703 16.4835 42.9893 25.6748C42.4324 30.4081 39.6587 33.2237 36.4766 33.4395C34.9269 33.5445 33.4012 32.9956 32.2734 31.8467C31.8219 31.3866 31.4502 30.8445 31.1641 30.2344C29.4224 32.234 26.86 33.5 24 33.5C18.7533 33.5 14.5 29.2467 14.5 24C14.5 18.7533 18.7533 14.5 24 14.5C26.515 14.5 28.8006 15.4786 30.5 17.0742V14H33.5V27.0566C33.5 28.3805 33.9195 29.2412 34.4141 29.7451C34.9112 30.2517 35.5733 30.4937 36.2734 30.4463C37.5912 30.357 39.5675 29.0915 40.0107 25.3252C40.9294 17.5165 35.1604 7.5 24 7.5C14.8873 7.5 7.5 14.8873 7.5 24C7.5 33.1127 14.8873 40.5 24 40.5C27.5442 40.5 30.1001 39.7925 31.7393 39.1143C32.5608 38.7743 33.1569 38.4391 33.5352 38.2002C33.7242 38.0808 33.8593 37.9851 33.9404 37.9248C33.9807 37.8949 34.0076 37.8734 34.0215 37.8623L34.0303 37.8555L34.0254 37.8604L35.9746 40.1396L35.9707 40.1436C35.9687 40.1452 35.9663 40.1474 35.9639 40.1494C35.959 40.1535 35.9529 40.1586 35.9463 40.1641C35.933 40.1751 35.9158 40.1889 35.8955 40.2051C35.8545 40.2379 35.7991 40.2813 35.7295 40.333C35.59 40.4367 35.3926 40.5757 35.1367 40.7373C34.6244 41.0609 33.8764 41.4758 32.8857 41.8857C30.8999 42.7074 27.9557 43.5 24 43.5C13.2304 43.5 4.5 34.7696 4.5 24C4.5 13.2304 13.2304 4.5 24 4.5ZM24 17.5C20.4101 17.5 17.5 20.4101 17.5 24C17.5 27.5899 20.4101 30.5 24 30.5C27.5899 30.5 30.5 27.5899 30.5 24C30.5 20.4101 27.5899 17.5 24 17.5Z", style: { fill: `var(--${type})` } }) });
|
|
9080
|
+
} else if (thick) {
|
|
9081
|
+
return /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("svg", { width: import_design_token_primitive206.iconSizeMap[size], height: import_design_token_primitive206.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 4C37.6996 4 44.5946 16.3117 43.4863 25.7334C42.9105 30.6279 40.0027 33.7018 36.5098 33.9385C34.8186 34.0529 33.1488 33.4523 31.916 32.1963C31.5885 31.8626 31.3008 31.491 31.0537 31.0869C29.2454 32.8868 26.753 34 24 34C18.4772 34 14 29.5228 14 24C14 18.4772 18.4772 14 24 14C26.2512 14 28.3287 14.7437 30 15.999V14H34V27.0566C34 28.2713 34.3828 28.9985 34.7715 29.3945C35.1636 29.794 35.6816 29.9861 36.2402 29.9482C37.2473 29.8798 39.0895 28.8714 39.5137 25.2666C40.4052 17.6884 34.7976 8 24 8C15.1634 8 8 15.1634 8 24C8 32.8366 15.1634 40 24 40C27.4755 40 29.9664 39.3067 31.5479 38.6523C32.3412 38.324 32.9116 38.0021 33.2676 37.7773C33.4456 37.6649 33.5701 37.5766 33.6416 37.5234C33.6771 37.497 33.6995 37.4793 33.709 37.4717C33.711 37.4701 33.7139 37.4688 33.7139 37.4688L33.7041 37.4766L33.7012 37.4785L33.7002 37.4805L36.2998 40.5195L36.2949 40.5244C36.2924 40.5266 36.2891 40.5287 36.2861 40.5312C36.2802 40.5363 36.2734 40.5424 36.2656 40.5488C36.2501 40.5617 36.2307 40.5775 36.208 40.5957C36.1625 40.6321 36.1028 40.679 36.0283 40.7344C35.8791 40.8453 35.6715 40.9914 35.4043 41.1602C34.8696 41.4979 34.0962 41.926 33.0771 42.3477C31.0336 43.1933 28.0245 44 24 44C12.9543 44 4 35.0457 4 24C4 12.9543 12.9543 4 24 4ZM24 18C20.6863 18 18 20.6863 18 24C18 27.3137 20.6863 30 24 30C27.3137 30 30 27.3137 30 24C30 20.6863 27.3137 18 24 18Z", style: { fill: `var(--${type})` } }) });
|
|
9082
|
+
}
|
|
9083
|
+
return /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("svg", { width: import_design_token_primitive206.iconSizeMap[size], height: import_design_token_primitive206.iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime206.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M24 4.5C37.3368 4.5 44.0703 16.4835 42.9893 25.6748C42.4324 30.4081 39.6587 33.2237 36.4766 33.4395C34.9269 33.5445 33.4012 32.9956 32.2734 31.8467C31.8219 31.3866 31.4502 30.8445 31.1641 30.2344C29.4224 32.234 26.86 33.5 24 33.5C18.7533 33.5 14.5 29.2467 14.5 24C14.5 18.7533 18.7533 14.5 24 14.5C26.515 14.5 28.8006 15.4786 30.5 17.0742V14H33.5V27.0566C33.5 28.3805 33.9195 29.2412 34.4141 29.7451C34.9112 30.2517 35.5733 30.4937 36.2734 30.4463C37.5912 30.357 39.5675 29.0915 40.0107 25.3252C40.9294 17.5165 35.1604 7.5 24 7.5C14.8873 7.5 7.5 14.8873 7.5 24C7.5 33.1127 14.8873 40.5 24 40.5C27.5442 40.5 30.1001 39.7925 31.7393 39.1143C32.5608 38.7743 33.1569 38.4391 33.5352 38.2002C33.7242 38.0808 33.8593 37.9851 33.9404 37.9248C33.9807 37.8949 34.0076 37.8734 34.0215 37.8623L34.0303 37.8555L34.0254 37.8604L35.9746 40.1396L35.9707 40.1436C35.9687 40.1452 35.9663 40.1474 35.9639 40.1494C35.959 40.1535 35.9529 40.1586 35.9463 40.1641C35.933 40.1751 35.9158 40.1889 35.8955 40.2051C35.8545 40.2379 35.7991 40.2813 35.7295 40.333C35.59 40.4367 35.3926 40.5757 35.1367 40.7373C34.6244 41.0609 33.8764 41.4758 32.8857 41.8857C30.8999 42.7074 27.9557 43.5 24 43.5C13.2304 43.5 4.5 34.7696 4.5 24C4.5 13.2304 13.2304 4.5 24 4.5ZM24 17.5C20.4101 17.5 17.5 20.4101 17.5 24C17.5 27.5899 20.4101 30.5 24 30.5C27.5899 30.5 30.5 27.5899 30.5 24C30.5 20.4101 27.5899 17.5 24 17.5Z", style: { fill: `var(--${type})` } }) });
|
|
9084
|
+
}
|
|
9085
|
+
);
|
|
9086
|
+
|
|
9087
|
+
// index.tsx
|
|
9088
|
+
var import_jsx_runtime207 = __toESM(require_jsx_runtime());
|
|
9095
9089
|
var IconMap = {
|
|
9096
9090
|
"arrow-upward": IconArrowUpward,
|
|
9097
9091
|
"arrow-downward": IconArrowDownward,
|
|
@@ -9297,14 +9291,15 @@ var IconMap = {
|
|
|
9297
9291
|
"color-peer-review": IconColorPeerReview,
|
|
9298
9292
|
"color-survey-simulator": IconColorSurveySimulator,
|
|
9299
9293
|
"color-literature-review": IconColorLiteratureReview,
|
|
9300
|
-
"color-research-tracer": IconColorResearchTracer
|
|
9294
|
+
"color-research-tracer": IconColorResearchTracer,
|
|
9295
|
+
"at-sign": IconAtSign
|
|
9301
9296
|
};
|
|
9302
|
-
var Icon = (0,
|
|
9297
|
+
var Icon = (0, import_react207.forwardRef)(({ name, size = "m", ...props }, ref) => {
|
|
9303
9298
|
const IconComponent = IconMap[name];
|
|
9304
9299
|
if (!IconComponent) {
|
|
9305
9300
|
return null;
|
|
9306
9301
|
}
|
|
9307
|
-
return /* @__PURE__ */ (0,
|
|
9302
|
+
return /* @__PURE__ */ (0, import_jsx_runtime207.jsx)(IconComponent, { ...props, ref, size });
|
|
9308
9303
|
});
|
|
9309
9304
|
/*! Bundled license information:
|
|
9310
9305
|
|