@liner-fe/icon 0.1.22 → 0.1.24

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