@liner-fe/icon 0.1.20 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ultra.cache.json +1 -0
- package/CHANGELOG.md +13 -0
- package/assets/adjustment/index.tsx +41 -0
- package/assets/view-sidebar/index.tsx +35 -0
- package/index.tsx +3 -1
- package/lib/index.d.ts +6 -2
- package/lib/index.js +55 -1
- package/package.json +5 -4
|
@@ -0,0 +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}}
|
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconAdjustment = 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 fillRule="evenodd" clipRule="evenodd" d="M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 28C11.2386 28 9 30.2386 9 33C9 35.7614 11.2386 38 14 38C16.7614 38 19 35.7614 19 33C19 30.2386 16.7614 28 14 28Z" style={{ fill: `var(--${type})` }}/>
|
|
10
|
+
<path d="M42 34.5H25V31.5H42V34.5Z" style={{ fill: `var(--${type})` }}/>
|
|
11
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 10C31.2386 10 29 12.2386 29 15C29 17.7614 31.2386 20 34 20C36.7614 20 39 17.7614 39 15C39 12.2386 36.7614 10 34 10Z" style={{ fill: `var(--${type})` }}/>
|
|
12
|
+
<path d="M23 16.5H6V13.5H23V16.5Z" style={{ fill: `var(--${type})` }}/>
|
|
13
|
+
</svg>
|
|
14
|
+
;
|
|
15
|
+
} else if (fill) {
|
|
16
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
17
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 28C11.2386 28 9 30.2386 9 33C9 35.7614 11.2386 38 14 38C16.7614 38 19 35.7614 19 33C19 30.2386 16.7614 28 14 28Z" style={{ fill: `var(--${type})` }}/>
|
|
18
|
+
<path d="M42 34.5H25V31.5H42V34.5Z" style={{ fill: `var(--${type})` }}/>
|
|
19
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 10C31.2386 10 29 12.2386 29 15C29 17.7614 31.2386 20 34 20C36.7614 20 39 17.7614 39 15C39 12.2386 36.7614 10 34 10Z" style={{ fill: `var(--${type})` }}/>
|
|
20
|
+
<path d="M23 16.5H6V13.5H23V16.5Z" style={{ fill: `var(--${type})` }}/>
|
|
21
|
+
</svg>
|
|
22
|
+
;
|
|
23
|
+
} else if (thick) {
|
|
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="M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 29C11.7909 29 10 30.7909 10 33C10 35.2091 11.7909 37 14 37C16.2091 37 18 35.2091 18 33C18 30.7909 16.2091 29 14 29Z" style={{ fill: `var(--${type})` }}/>
|
|
26
|
+
<path d="M42 35H25V31H42V35Z" style={{ fill: `var(--${type})` }}/>
|
|
27
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 11C31.7909 11 30 12.7909 30 15C30 17.2091 31.7909 19 34 19C36.2091 19 38 17.2091 38 15C38 12.7909 36.2091 11 34 11Z" style={{ fill: `var(--${type})` }}/>
|
|
28
|
+
<path d="M23 17H6V13H23V17Z" style={{ fill: `var(--${type})` }}/>
|
|
29
|
+
</svg>
|
|
30
|
+
;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
34
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 28C11.2386 28 9 30.2386 9 33C9 35.7614 11.2386 38 14 38C16.7614 38 19 35.7614 19 33C19 30.2386 16.7614 28 14 28Z" style={{ fill: `var(--${type})` }}/>
|
|
35
|
+
<path d="M42 34.5H25V31.5H42V34.5Z" style={{ fill: `var(--${type})` }}/>
|
|
36
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 10C31.2386 10 29 12.2386 29 15C29 17.7614 31.2386 20 34 20C36.7614 20 39 17.7614 39 15C39 12.2386 36.7614 10 34 10Z" style={{ fill: `var(--${type})` }}/>
|
|
37
|
+
<path d="M23 16.5H6V13.5H23V16.5Z" style={{ fill: `var(--${type})` }}/>
|
|
38
|
+
</svg>
|
|
39
|
+
;
|
|
40
|
+
}
|
|
41
|
+
);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconViewSidebar = 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 fillRule="evenodd" clipRule="evenodd" d="M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM23.5 36H41V12H23.5V36ZM10 29V33H16.5V29H10ZM10 22V26H16.5V22H10ZM10 15V19H16.5V15H10Z" 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="M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM23 37H42V11H23V37ZM10 29.5V32.5H16V29.5H10ZM10 22.5V25.5H16V22.5H10ZM10 15.5V18.5H16V15.5H10Z" 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 d="M16.5 33H10V29H16.5V33Z" style={{ fill: `var(--${type})` }}/>
|
|
20
|
+
<path d="M16.5 26H10V22H16.5V26Z" style={{ fill: `var(--${type})` }}/>
|
|
21
|
+
<path d="M16.5 19H10V15H16.5V19Z" style={{ fill: `var(--${type})` }}/>
|
|
22
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM7 36H19.5V12H7V36ZM23.5 36H41V12H23.5V36Z" style={{ fill: `var(--${type})` }}/>
|
|
23
|
+
</svg>
|
|
24
|
+
;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
28
|
+
<path d="M16 32.5H10V29.5H16V32.5Z" style={{ fill: `var(--${type})` }}/>
|
|
29
|
+
<path d="M16 25.5H10V22.5H16V25.5Z" style={{ fill: `var(--${type})` }}/>
|
|
30
|
+
<path d="M16 18.5H10V15.5H16V18.5Z" style={{ fill: `var(--${type})` }}/>
|
|
31
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM6 37H20V11H6V37ZM23 37H42V11H23V37Z" style={{ fill: `var(--${type})` }}/>
|
|
32
|
+
</svg>
|
|
33
|
+
;
|
|
34
|
+
}
|
|
35
|
+
);
|
package/index.tsx
CHANGED
|
@@ -206,8 +206,10 @@ export { IconColorLiteratureReview } from './assets/color-literature-review';
|
|
|
206
206
|
export { IconColorResearchTracer } from './assets/color-research-tracer';
|
|
207
207
|
export { IconAtSign } from './assets/at-sign';
|
|
208
208
|
export { IconColorPeerReview } from './assets/color-peer-review';
|
|
209
|
+
export { IconAdjustment } from './assets/adjustment';
|
|
210
|
+
export { IconViewSidebar } from './assets/view-sidebar';
|
|
209
211
|
|
|
210
|
-
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";
|
|
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";
|
|
211
213
|
|
|
212
214
|
export type IconSizeKey = keyof typeof iconSizeMap;
|
|
213
215
|
|
package/lib/index.d.ts
CHANGED
|
@@ -413,7 +413,11 @@ declare const IconAtSign: React.ForwardRefExoticComponent<Omit<IconProps, "ref">
|
|
|
413
413
|
|
|
414
414
|
declare const IconColorPeerReview: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
415
415
|
|
|
416
|
-
|
|
416
|
+
declare const IconAdjustment: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
417
|
+
|
|
418
|
+
declare const IconViewSidebar: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
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";
|
|
417
421
|
type IconSizeKey = keyof typeof iconSizeMap;
|
|
418
422
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
419
423
|
fill?: boolean;
|
|
@@ -425,4 +429,4 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
|
425
429
|
}
|
|
426
430
|
type IconComponentType = React.ForwardRefExoticComponent<Omit<IconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
|
|
427
431
|
|
|
428
|
-
export { 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, 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 };
|
|
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 };
|
package/lib/index.js
CHANGED
|
@@ -4582,5 +4582,59 @@ var IconColorPeerReview = /* @__PURE__ */ forwardRef(
|
|
|
4582
4582
|
] });
|
|
4583
4583
|
}
|
|
4584
4584
|
);
|
|
4585
|
+
var IconAdjustment = /* @__PURE__ */ forwardRef(
|
|
4586
|
+
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
4587
|
+
if (fill && thick) {
|
|
4588
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4589
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 28C11.2386 28 9 30.2386 9 33C9 35.7614 11.2386 38 14 38C16.7614 38 19 35.7614 19 33C19 30.2386 16.7614 28 14 28Z", style: { fill: `var(--${type})` } }),
|
|
4590
|
+
/* @__PURE__ */ jsx("path", { d: "M42 34.5H25V31.5H42V34.5Z", style: { fill: `var(--${type})` } }),
|
|
4591
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 10C31.2386 10 29 12.2386 29 15C29 17.7614 31.2386 20 34 20C36.7614 20 39 17.7614 39 15C39 12.2386 36.7614 10 34 10Z", style: { fill: `var(--${type})` } }),
|
|
4592
|
+
/* @__PURE__ */ jsx("path", { d: "M23 16.5H6V13.5H23V16.5Z", style: { fill: `var(--${type})` } })
|
|
4593
|
+
] });
|
|
4594
|
+
} else if (fill) {
|
|
4595
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4596
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 28C11.2386 28 9 30.2386 9 33C9 35.7614 11.2386 38 14 38C16.7614 38 19 35.7614 19 33C19 30.2386 16.7614 28 14 28Z", style: { fill: `var(--${type})` } }),
|
|
4597
|
+
/* @__PURE__ */ jsx("path", { d: "M42 34.5H25V31.5H42V34.5Z", style: { fill: `var(--${type})` } }),
|
|
4598
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 10C31.2386 10 29 12.2386 29 15C29 17.7614 31.2386 20 34 20C36.7614 20 39 17.7614 39 15C39 12.2386 36.7614 10 34 10Z", style: { fill: `var(--${type})` } }),
|
|
4599
|
+
/* @__PURE__ */ jsx("path", { d: "M23 16.5H6V13.5H23V16.5Z", style: { fill: `var(--${type})` } })
|
|
4600
|
+
] });
|
|
4601
|
+
} else if (thick) {
|
|
4602
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4603
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 29C11.7909 29 10 30.7909 10 33C10 35.2091 11.7909 37 14 37C16.2091 37 18 35.2091 18 33C18 30.7909 16.2091 29 14 29Z", style: { fill: `var(--${type})` } }),
|
|
4604
|
+
/* @__PURE__ */ jsx("path", { d: "M42 35H25V31H42V35Z", style: { fill: `var(--${type})` } }),
|
|
4605
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 11C31.7909 11 30 12.7909 30 15C30 17.2091 31.7909 19 34 19C36.2091 19 38 17.2091 38 15C38 12.7909 36.2091 11 34 11Z", style: { fill: `var(--${type})` } }),
|
|
4606
|
+
/* @__PURE__ */ jsx("path", { d: "M23 17H6V13H23V17Z", style: { fill: `var(--${type})` } })
|
|
4607
|
+
] });
|
|
4608
|
+
}
|
|
4609
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4610
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14 25C18.4183 25 22 28.5817 22 33C22 37.4183 18.4183 41 14 41C9.58172 41 6 37.4183 6 33C6 28.5817 9.58172 25 14 25ZM14 28C11.2386 28 9 30.2386 9 33C9 35.7614 11.2386 38 14 38C16.7614 38 19 35.7614 19 33C19 30.2386 16.7614 28 14 28Z", style: { fill: `var(--${type})` } }),
|
|
4611
|
+
/* @__PURE__ */ jsx("path", { d: "M42 34.5H25V31.5H42V34.5Z", style: { fill: `var(--${type})` } }),
|
|
4612
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M34 7C38.4183 7 42 10.5817 42 15C42 19.4183 38.4183 23 34 23C29.5817 23 26 19.4183 26 15C26 10.5817 29.5817 7 34 7ZM34 10C31.2386 10 29 12.2386 29 15C29 17.7614 31.2386 20 34 20C36.7614 20 39 17.7614 39 15C39 12.2386 36.7614 10 34 10Z", style: { fill: `var(--${type})` } }),
|
|
4613
|
+
/* @__PURE__ */ jsx("path", { d: "M23 16.5H6V13.5H23V16.5Z", style: { fill: `var(--${type})` } })
|
|
4614
|
+
] });
|
|
4615
|
+
}
|
|
4616
|
+
);
|
|
4617
|
+
var IconViewSidebar = /* @__PURE__ */ forwardRef(
|
|
4618
|
+
({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
|
|
4619
|
+
if (fill && thick) {
|
|
4620
|
+
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: "M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM23.5 36H41V12H23.5V36ZM10 29V33H16.5V29H10ZM10 22V26H16.5V22H10ZM10 15V19H16.5V15H10Z", style: { fill: `var(--${type})` } }) });
|
|
4621
|
+
} else if (fill) {
|
|
4622
|
+
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: "M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM23 37H42V11H23V37ZM10 29.5V32.5H16V29.5H10ZM10 22.5V25.5H16V22.5H10ZM10 15.5V18.5H16V15.5H10Z", style: { fill: `var(--${type})` } }) });
|
|
4623
|
+
} else if (thick) {
|
|
4624
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4625
|
+
/* @__PURE__ */ jsx("path", { d: "M16.5 33H10V29H16.5V33Z", style: { fill: `var(--${type})` } }),
|
|
4626
|
+
/* @__PURE__ */ jsx("path", { d: "M16.5 26H10V22H16.5V26Z", style: { fill: `var(--${type})` } }),
|
|
4627
|
+
/* @__PURE__ */ jsx("path", { d: "M16.5 19H10V15H16.5V19Z", style: { fill: `var(--${type})` } }),
|
|
4628
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM7 36H19.5V12H7V36ZM23.5 36H41V12H23.5V36Z", style: { fill: `var(--${type})` } })
|
|
4629
|
+
] });
|
|
4630
|
+
}
|
|
4631
|
+
return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
|
|
4632
|
+
/* @__PURE__ */ jsx("path", { d: "M16 32.5H10V29.5H16V32.5Z", style: { fill: `var(--${type})` } }),
|
|
4633
|
+
/* @__PURE__ */ jsx("path", { d: "M16 25.5H10V22.5H16V25.5Z", style: { fill: `var(--${type})` } }),
|
|
4634
|
+
/* @__PURE__ */ jsx("path", { d: "M16 18.5H10V15.5H16V18.5Z", style: { fill: `var(--${type})` } }),
|
|
4635
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M43 8C44.1046 8 45 8.89543 45 10V38C45 39.0357 44.2128 39.887 43.2041 39.9893L43 40H5L4.7959 39.9893C3.78722 39.887 3 39.0357 3 38V10C3 8.89543 3.89543 8 5 8H43ZM6 37H20V11H6V37ZM23 37H42V11H23V37Z", style: { fill: `var(--${type})` } })
|
|
4636
|
+
] });
|
|
4637
|
+
}
|
|
4638
|
+
);
|
|
4585
4639
|
|
|
4586
|
-
export { 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, 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, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liner-fe/icon",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "yarn tsup --config ./config/tsup/tsup.config.ts && yarn forward-ref-pure",
|
|
8
|
+
"build:package": "yarn build",
|
|
8
9
|
"ts-node": "tsx --tsconfig ./tsconfig.build.json",
|
|
9
10
|
"forward-ref-pure": "yarn ts-node ./scripts/forward-ref-pure.ts"
|
|
10
11
|
},
|
|
@@ -18,10 +19,10 @@
|
|
|
18
19
|
"main": "./lib/index.js",
|
|
19
20
|
"types": "./lib/index.d.ts",
|
|
20
21
|
"dependencies": {
|
|
21
|
-
"@liner-fe/design-token-primitive": "workspace:^"
|
|
22
|
-
"tsx": "^4.20.5"
|
|
22
|
+
"@liner-fe/design-token-primitive": "workspace:^"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"tsup": "^8.5.0"
|
|
25
|
+
"tsup": "^8.5.0",
|
|
26
|
+
"tsx": "^4.20.5"
|
|
26
27
|
}
|
|
27
28
|
}
|