@liner-fe/icon 0.1.26 → 0.1.28

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":"1760658259366.6243","index.tsx":"1760658259368.6243","lib":"1760658290746.4236","node_modules":"1760658252041.672",".gitignore":"58c55a7d67f2161e09b2a19f2db26d588e658d09","CHANGELOG.md":"1ac3a9570d7a537a526733199a77c2ba96be0e6e.1760658255589.649","config/tsup/tsup.config.ts":"812a138e414703802d84e4d978708acbd809458c","package.json":"9ebaf1cc9d0e77271f7e866b51b00ee26a73fafb.1760658255423.65","scripts/forward-ref-pure.ts":"e12956db676ca6e224935cde7f9beab88c2b39f4","tsconfig.build.json":"af00f0eed6650fb83dad99d4631b56052be48626"},"deps":{"@liner-fe/design-token-primitive":1760658270938.5532}}
1
+ {"files":{"assets":"1761015633701.2021","index.tsx":"1761015633703.2021","lib":"1761015661969.616","node_modules":"1761015624697.0713",".gitignore":"58c55a7d67f2161e09b2a19f2db26d588e658d09","CHANGELOG.md":"1e9bbd3dd32bd2f0d613f6dcf8f73ddb9f685473.1761015629319.1387","config/tsup/tsup.config.ts":"a111f817402b20feb12ff8d65c63331b197f8b9e","package.json":"9bb946422cb110107c52ecf2bff9ba7487ca81df.1761015629132.136","scripts/forward-ref-pure.ts":"e12956db676ca6e224935cde7f9beab88c2b39f4","tsconfig.build.json":"af00f0eed6650fb83dad99d4631b56052be48626"},"deps":{"@liner-fe/design-token-primitive":1761015640230.2974}}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @liner-fe/icon
2
2
 
3
+ ## 0.1.28
4
+
5
+ ### Patch Changes
6
+
7
+ - b82ba21: Update Icon
8
+
9
+ ## 0.1.27
10
+
11
+ ### Patch Changes
12
+
13
+ - e2d8cd6: icon update
14
+
3
15
  ## 0.1.26
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,29 @@
1
+ import React, { forwardRef } from 'react';
2
+ import { iconSizeMap } from '@liner-fe/design-token-primitive';
3
+ import { IconProps } from '../../index';
4
+
5
+ export const IconColorKakaotalkLogo = 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="M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z" fill="black"/>
10
+ </svg>
11
+ ;
12
+ } else if (fill) {
13
+ return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
14
+ <path fillRule="evenodd" clipRule="evenodd" d="M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z" fill="black"/>
15
+ </svg>
16
+ ;
17
+ } else if (thick) {
18
+ return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
19
+ <path fillRule="evenodd" clipRule="evenodd" d="M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z" fill="black"/>
20
+ </svg>
21
+ ;
22
+ }
23
+
24
+ return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
25
+ <path fillRule="evenodd" clipRule="evenodd" d="M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z" fill="black"/>
26
+ </svg>
27
+ ;
28
+ }
29
+ );
@@ -9,5 +9,7 @@ export default defineConfig({
9
9
  platform: 'neutral',
10
10
  dts: true,
11
11
  treeshake: true,
12
- skipNodeModulesBundle: true,
12
+ // @liner-fe/templates의 Storybook이 동작하지 않는 이슈가 있어서 비활성화
13
+ // 멀티 레포 환경에서는 되는데 왜 안되는지 모르겠음
14
+ skipNodeModulesBundle: process.env.CI === 'true',
13
15
  });
package/index.tsx CHANGED
@@ -51,7 +51,6 @@ export { IconFolder } from './assets/folder';
51
51
  export { IconFolderOpen } from './assets/folder-open';
52
52
  export { IconFolderAdd } from './assets/folder-add';
53
53
  export { IconDocument } from './assets/document';
54
- export { IconHistory } from './assets/history';
55
54
  export { IconPerson } from './assets/person';
56
55
  export { IconPersonAdd } from './assets/person-add';
57
56
  export { IconSend } from './assets/send';
@@ -78,7 +77,6 @@ export { IconCreditcard } from './assets/creditcard';
78
77
  export { IconSpeaker } from './assets/speaker';
79
78
  export { IconTune } from './assets/tune';
80
79
  export { IconShield } from './assets/shield';
81
- export { IconMenu } from './assets/menu';
82
80
  export { IconLight } from './assets/light';
83
81
  export { IconDocumentAdd } from './assets/document-add';
84
82
  export { IconThumbUp } from './assets/thumb-up';
@@ -227,8 +225,9 @@ export { IconColorXml } from './assets/color-xml';
227
225
  export { IconColorXlsx } from './assets/color-xlsx';
228
226
  export { IconColorJson } from './assets/color-json';
229
227
  export { IconColorImage } from './assets/color-image';
228
+ export { IconColorKakaotalkLogo } from './assets/color-kakaotalk-logo';
230
229
 
231
- 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" | "bold" | "italic" | "underline" | "strikethrough" | "align-left" | "align-center" | "align-right" | "left-indentation" | "right-indentation" | "numbered-list" | "color-kakaotalk" | "color-hwp" | "color-xml" | "color-xlsx" | "color-json" | "color-image";
230
+ 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" | "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" | "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" | "bold" | "italic" | "underline" | "strikethrough" | "align-left" | "align-center" | "align-right" | "left-indentation" | "right-indentation" | "numbered-list" | "color-kakaotalk" | "color-hwp" | "color-xml" | "color-xlsx" | "color-json" | "color-image" | "color-kakaotalk-logo";
232
231
 
233
232
  export type IconSizeKey = keyof typeof iconSizeMap;
234
233
 
package/lib/index.d.ts CHANGED
@@ -103,8 +103,6 @@ declare const IconFolderAdd: React.ForwardRefExoticComponent<Omit<IconProps, "re
103
103
 
104
104
  declare const IconDocument: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
105
105
 
106
- declare const IconHistory: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
107
-
108
106
  declare const IconPerson: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
109
107
 
110
108
  declare const IconPersonAdd: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -157,8 +155,6 @@ declare const IconTune: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> &
157
155
 
158
156
  declare const IconShield: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
159
157
 
160
- declare const IconMenu: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
161
-
162
158
  declare const IconLight: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
163
159
 
164
160
  declare const IconDocumentAdd: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -455,7 +451,9 @@ declare const IconColorJson: React.ForwardRefExoticComponent<Omit<IconProps, "re
455
451
 
456
452
  declare const IconColorImage: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
457
453
 
458
- 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" | "bold" | "italic" | "underline" | "strikethrough" | "align-left" | "align-center" | "align-right" | "left-indentation" | "right-indentation" | "numbered-list" | "color-kakaotalk" | "color-hwp" | "color-xml" | "color-xlsx" | "color-json" | "color-image";
454
+ declare const IconColorKakaotalkLogo: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
455
+
456
+ 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" | "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" | "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" | "bold" | "italic" | "underline" | "strikethrough" | "align-left" | "align-center" | "align-right" | "left-indentation" | "right-indentation" | "numbered-list" | "color-kakaotalk" | "color-hwp" | "color-xml" | "color-xlsx" | "color-json" | "color-image" | "color-kakaotalk-logo";
459
457
  type IconSizeKey = keyof typeof iconSizeMap;
460
458
  interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
461
459
  fill?: boolean;
@@ -467,4 +465,4 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
467
465
  }
468
466
  type IconComponentType = React.ForwardRefExoticComponent<Omit<IconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
469
467
 
470
- export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAlignCenter, IconAlignLeft, IconAlignRight, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBold, 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, IconColorHwp, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorImage, IconColorJson, IconColorKakaotalk, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, IconColorXlsx, IconColorXml, 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, IconItalic, IconLeftIndentation, 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, IconNumberedList, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRightIndentation, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconStrikethrough, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUnderline, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
468
+ export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAlignCenter, IconAlignLeft, IconAlignRight, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBold, 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, IconColorHwp, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorImage, IconColorJson, IconColorKakaotalk, IconColorKakaotalkLogo, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, IconColorXlsx, IconColorXml, 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, IconHome, IconHourglass, IconInfo, IconItalic, IconLeftIndentation, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, type IconName, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconNumberedList, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRightIndentation, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconStrikethrough, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUnderline, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
package/lib/index.js CHANGED
@@ -906,30 +906,6 @@ var IconDocument = /* @__PURE__ */ forwardRef(
906
906
  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: "M11 44H37C38.1045 44 39 43.1046 39 42V20.865C39 20.3586 38.8078 19.871 38.4623 19.5007L24.5938 4.63565C24.2155 4.23021 23.6859 4 23.1314 4H11C9.89543 4 9 4.89543 9 6V42C9 43.1046 9.89543 44 11 44ZM36 21.5769V41H12V7H22.501V18.0769C22.501 20.0099 24.068 21.5769 26.001 21.5769H36ZM33.4976 18.5769L25.501 10.0057V18.0769C25.501 18.3531 25.7248 18.5769 26.001 18.5769H33.4976Z", style: { fill: `var(--${type})` } }) });
907
907
  }
908
908
  );
909
- var IconHistory = /* @__PURE__ */ forwardRef(
910
- ({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
911
- if (fill && thick) {
912
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
913
- /* @__PURE__ */ jsx("path", { d: "M34.253 13.747C28.5904 8.08435 19.4096 8.08435 13.747 13.747C12.899 14.595 12.1789 15.5204 11.5859 16.5H19V19.5H10C8.067 19.5 6.5 17.933 6.5 16V7.00003H9.5L9.5 14.1967C10.1147 13.2896 10.8234 12.4279 11.6256 11.6256C18.4598 4.79146 29.5402 4.79146 36.3744 11.6256C43.2085 18.4598 43.2085 29.5402 36.3744 36.3744C29.5402 43.2085 18.4598 43.2085 11.6256 36.3744C9.91304 34.6618 8.62764 32.6793 7.77253 30.5623C7.34186 29.496 7.02061 28.3964 6.80863 27.2805L9.75592 26.7206C9.93164 27.6456 10.1978 28.5563 10.5542 29.4387C11.2612 31.189 12.3244 32.8305 13.747 34.253C19.4096 39.9157 28.5904 39.9157 34.253 34.253C39.9156 28.5904 39.9157 19.4096 34.253 13.747Z", style: { fill: `var(--${type})` } }),
914
- /* @__PURE__ */ jsx("path", { d: "M25.5 23.672V14.7613H22.5V23.672C22.5 24.6002 22.8687 25.4905 23.5251 26.1468L29.4393 32.0612L31.5607 29.9399L25.6464 24.0255C25.5527 23.9318 25.5 23.8046 25.5 23.672Z", style: { fill: `var(--${type})` } })
915
- ] });
916
- } else if (fill) {
917
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
918
- /* @__PURE__ */ jsx("path", { d: "M34.253 13.747C28.5904 8.08435 19.4096 8.08435 13.747 13.747C12.899 14.595 12.1789 15.5204 11.5859 16.5H19V19.5H10C8.067 19.5 6.5 17.933 6.5 16V7.00003H9.5L9.5 14.1967C10.1147 13.2896 10.8234 12.4279 11.6256 11.6256C18.4598 4.79146 29.5402 4.79146 36.3744 11.6256C43.2085 18.4598 43.2085 29.5402 36.3744 36.3744C29.5402 43.2085 18.4598 43.2085 11.6256 36.3744C9.91304 34.6618 8.62764 32.6793 7.77253 30.5623C7.34186 29.496 7.02061 28.3964 6.80863 27.2805L9.75592 26.7206C9.93164 27.6456 10.1978 28.5563 10.5542 29.4387C11.2612 31.189 12.3244 32.8305 13.747 34.253C19.4096 39.9157 28.5904 39.9157 34.253 34.253C39.9156 28.5904 39.9157 19.4096 34.253 13.747Z", style: { fill: `var(--${type})` } }),
919
- /* @__PURE__ */ jsx("path", { d: "M25.5 23.672V14.7613H22.5V23.672C22.5 24.6002 22.8687 25.4905 23.5251 26.1468L29.4393 32.0612L31.5607 29.9399L25.6464 24.0255C25.5527 23.9318 25.5 23.8046 25.5 23.672Z", style: { fill: `var(--${type})` } })
920
- ] });
921
- } else if (thick) {
922
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
923
- /* @__PURE__ */ jsx("path", { d: "M33.8995 14.1005C28.4322 8.63316 19.5678 8.63316 14.1005 14.1005C13.5039 14.6971 12.9731 15.3332 12.5076 16H18V20H9C6.79086 20 5 18.2092 5 16V7.00003H9L9 14.0445C9.65195 13.0642 10.4095 12.1346 11.2721 11.2721C18.3015 4.24264 29.6985 4.24264 36.7279 11.2721C43.7574 18.3015 43.7574 29.6985 36.7279 36.7279C29.6985 43.7574 18.3015 43.7574 11.2721 36.7279C9.51115 34.967 8.18872 32.9277 7.30892 30.7495C6.86587 29.6527 6.53544 28.5215 6.31741 27.3738L10.2471 26.6273C10.4168 27.5204 10.6738 28.3997 11.0178 29.2515C11.7001 30.9406 12.7263 32.5253 14.1005 33.8995C19.5678 39.3668 28.4322 39.3668 33.8995 33.8995C39.3668 28.4322 39.3668 19.5678 33.8995 14.1005Z", style: { fill: `var(--${type})` } }),
924
- /* @__PURE__ */ jsx("path", { d: "M26 23.672V14.7613H22V23.672C22 24.7328 22.4214 25.7502 23.1715 26.5004L29.0858 32.4147L31.9142 29.5863L26 23.672Z", style: { fill: `var(--${type})` } })
925
- ] });
926
- }
927
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
928
- /* @__PURE__ */ jsx("path", { d: "M34.253 13.747C28.5904 8.08435 19.4096 8.08435 13.747 13.747C12.899 14.595 12.1789 15.5204 11.5859 16.5H19V19.5H10C8.067 19.5 6.5 17.933 6.5 16V7.00003H9.5L9.5 14.1967C10.1147 13.2896 10.8234 12.4279 11.6256 11.6256C18.4598 4.79146 29.5402 4.79146 36.3744 11.6256C43.2085 18.4598 43.2085 29.5402 36.3744 36.3744C29.5402 43.2085 18.4598 43.2085 11.6256 36.3744C9.91304 34.6618 8.62764 32.6793 7.77253 30.5623C7.34186 29.496 7.02061 28.3964 6.80863 27.2805L9.75592 26.7206C9.93164 27.6456 10.1978 28.5563 10.5542 29.4387C11.2612 31.189 12.3244 32.8305 13.747 34.253C19.4096 39.9157 28.5904 39.9157 34.253 34.253C39.9156 28.5904 39.9157 19.4096 34.253 13.747Z", style: { fill: `var(--${type})` } }),
929
- /* @__PURE__ */ jsx("path", { d: "M25.5 23.672V14.7613H22.5V23.672C22.5 24.6002 22.8687 25.4905 23.5251 26.1468L29.4393 32.0612L31.5607 29.9399L25.6464 24.0255C25.5527 23.9318 25.5 23.8046 25.5 23.672Z", style: { fill: `var(--${type})` } })
930
- ] });
931
- }
932
- );
933
909
  var IconPerson = /* @__PURE__ */ forwardRef(
934
910
  ({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
935
911
  if (fill && thick) {
@@ -1522,34 +1498,6 @@ var IconShield = /* @__PURE__ */ forwardRef(
1522
1498
  ] });
1523
1499
  }
1524
1500
  );
1525
- var IconMenu = /* @__PURE__ */ forwardRef(
1526
- ({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
1527
- if (fill && thick) {
1528
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
1529
- /* @__PURE__ */ jsx("path", { d: "M9 9.5H39V12.5H9V9.5Z", style: { fill: `var(--${type})` } }),
1530
- /* @__PURE__ */ jsx("path", { d: "M9 22.5H39V25.5H9V22.5Z", style: { fill: `var(--${type})` } }),
1531
- /* @__PURE__ */ jsx("path", { d: "M39 35.5H9V38.5H39V35.5Z", style: { fill: `var(--${type})` } })
1532
- ] });
1533
- } else if (fill) {
1534
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
1535
- /* @__PURE__ */ jsx("path", { d: "M9 9.5H39V12.5H9V9.5Z", style: { fill: `var(--${type})` } }),
1536
- /* @__PURE__ */ jsx("path", { d: "M9 22.5H39V25.5H9V22.5Z", style: { fill: `var(--${type})` } }),
1537
- /* @__PURE__ */ jsx("path", { d: "M39 35.5H9V38.5H39V35.5Z", style: { fill: `var(--${type})` } })
1538
- ] });
1539
- } else if (thick) {
1540
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
1541
- /* @__PURE__ */ jsx("path", { d: "M9 9H39V13H9V9Z", style: { fill: `var(--${type})` } }),
1542
- /* @__PURE__ */ jsx("path", { d: "M9 22H39V26H9V22Z", style: { fill: `var(--${type})` } }),
1543
- /* @__PURE__ */ jsx("path", { d: "M39 35H9V39H39V35Z", style: { fill: `var(--${type})` } })
1544
- ] });
1545
- }
1546
- return /* @__PURE__ */ jsxs("svg", { width: iconSizeMap[size], height: iconSizeMap[size], viewBox: "0 0 48 48", fill: "none", ref, className, ...props, children: [
1547
- /* @__PURE__ */ jsx("path", { d: "M9 9.5H39V12.5H9V9.5Z", style: { fill: `var(--${type})` } }),
1548
- /* @__PURE__ */ jsx("path", { d: "M9 22.5H39V25.5H9V22.5Z", style: { fill: `var(--${type})` } }),
1549
- /* @__PURE__ */ jsx("path", { d: "M39 35.5H9V38.5H39V35.5Z", style: { fill: `var(--${type})` } })
1550
- ] });
1551
- }
1552
- );
1553
1501
  var IconLight = /* @__PURE__ */ forwardRef(
1554
1502
  ({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
1555
1503
  if (fill && thick) {
@@ -5176,5 +5124,17 @@ var IconColorImage = /* @__PURE__ */ forwardRef(
5176
5124
  ] });
5177
5125
  }
5178
5126
  );
5127
+ var IconColorKakaotalkLogo = /* @__PURE__ */ forwardRef(
5128
+ ({ fill = false, thick = false, size = "m", type = "neutral-label-primary", className, fillType = "inverse-label-primary", ...props }, ref) => {
5129
+ if (fill && thick) {
5130
+ 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: "M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z", fill: "black" }) });
5131
+ } else if (fill) {
5132
+ 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: "M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z", fill: "black" }) });
5133
+ } else if (thick) {
5134
+ 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: "M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z", fill: "black" }) });
5135
+ }
5136
+ 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: "M24.0001 7C14.0584 7 6 13.3 6 21.0701C6 25.9024 9.11682 30.1624 13.8631 32.6962L11.8661 40.0781C11.6896 40.7304 12.4269 41.2503 12.993 40.8724L21.7467 35.0261C22.4855 35.0983 23.2362 35.1404 24.0001 35.1404C33.941 35.1404 42 28.8406 42 21.0701C42 13.3 33.941 7 24.0001 7Z", fill: "black" }) });
5137
+ }
5138
+ );
5179
5139
 
5180
- export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAlignCenter, IconAlignLeft, IconAlignRight, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBold, 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, IconColorHwp, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorImage, IconColorJson, IconColorKakaotalk, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, IconColorXlsx, IconColorXml, 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, IconItalic, IconLeftIndentation, 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, IconNumberedList, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRightIndentation, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconStrikethrough, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUnderline, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
5140
+ export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAlignCenter, IconAlignLeft, IconAlignRight, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBold, 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, IconColorHwp, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorImage, IconColorJson, IconColorKakaotalk, IconColorKakaotalkLogo, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, IconColorXlsx, IconColorXml, 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, IconHome, IconHourglass, IconInfo, IconItalic, IconLeftIndentation, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconNumberedList, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRightIndentation, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconStrikethrough, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUnderline, 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.26",
3
+ "version": "0.1.28",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "scripts": {
@@ -10,8 +10,7 @@
10
10
  "forward-ref-pure": "yarn ts-node ./scripts/forward-ref-pure.ts"
11
11
  },
12
12
  "publishConfig": {
13
- "access": "public",
14
- "main": "./lib/index.js"
13
+ "access": "public"
15
14
  },
16
15
  "files": [
17
16
  "*"
@@ -1,33 +0,0 @@
1
- import React, { forwardRef } from 'react';
2
- import { iconSizeMap } from '@liner-fe/design-token-primitive';
3
- import { IconProps } from '../../index';
4
-
5
- export const IconHistory = 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="M34.253 13.747C28.5904 8.08435 19.4096 8.08435 13.747 13.747C12.899 14.595 12.1789 15.5204 11.5859 16.5H19V19.5H10C8.067 19.5 6.5 17.933 6.5 16V7.00003H9.5L9.5 14.1967C10.1147 13.2896 10.8234 12.4279 11.6256 11.6256C18.4598 4.79146 29.5402 4.79146 36.3744 11.6256C43.2085 18.4598 43.2085 29.5402 36.3744 36.3744C29.5402 43.2085 18.4598 43.2085 11.6256 36.3744C9.91304 34.6618 8.62764 32.6793 7.77253 30.5623C7.34186 29.496 7.02061 28.3964 6.80863 27.2805L9.75592 26.7206C9.93164 27.6456 10.1978 28.5563 10.5542 29.4387C11.2612 31.189 12.3244 32.8305 13.747 34.253C19.4096 39.9157 28.5904 39.9157 34.253 34.253C39.9156 28.5904 39.9157 19.4096 34.253 13.747Z" style={{ fill: `var(--${type})` }}/>
10
- <path d="M25.5 23.672V14.7613H22.5V23.672C22.5 24.6002 22.8687 25.4905 23.5251 26.1468L29.4393 32.0612L31.5607 29.9399L25.6464 24.0255C25.5527 23.9318 25.5 23.8046 25.5 23.672Z" style={{ fill: `var(--${type})` }}/>
11
- </svg>
12
- ;
13
- } else if (fill) {
14
- return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
15
- <path d="M34.253 13.747C28.5904 8.08435 19.4096 8.08435 13.747 13.747C12.899 14.595 12.1789 15.5204 11.5859 16.5H19V19.5H10C8.067 19.5 6.5 17.933 6.5 16V7.00003H9.5L9.5 14.1967C10.1147 13.2896 10.8234 12.4279 11.6256 11.6256C18.4598 4.79146 29.5402 4.79146 36.3744 11.6256C43.2085 18.4598 43.2085 29.5402 36.3744 36.3744C29.5402 43.2085 18.4598 43.2085 11.6256 36.3744C9.91304 34.6618 8.62764 32.6793 7.77253 30.5623C7.34186 29.496 7.02061 28.3964 6.80863 27.2805L9.75592 26.7206C9.93164 27.6456 10.1978 28.5563 10.5542 29.4387C11.2612 31.189 12.3244 32.8305 13.747 34.253C19.4096 39.9157 28.5904 39.9157 34.253 34.253C39.9156 28.5904 39.9157 19.4096 34.253 13.747Z" style={{ fill: `var(--${type})` }}/>
16
- <path d="M25.5 23.672V14.7613H22.5V23.672C22.5 24.6002 22.8687 25.4905 23.5251 26.1468L29.4393 32.0612L31.5607 29.9399L25.6464 24.0255C25.5527 23.9318 25.5 23.8046 25.5 23.672Z" style={{ fill: `var(--${type})` }}/>
17
- </svg>
18
- ;
19
- } else if (thick) {
20
- return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
21
- <path d="M33.8995 14.1005C28.4322 8.63316 19.5678 8.63316 14.1005 14.1005C13.5039 14.6971 12.9731 15.3332 12.5076 16H18V20H9C6.79086 20 5 18.2092 5 16V7.00003H9L9 14.0445C9.65195 13.0642 10.4095 12.1346 11.2721 11.2721C18.3015 4.24264 29.6985 4.24264 36.7279 11.2721C43.7574 18.3015 43.7574 29.6985 36.7279 36.7279C29.6985 43.7574 18.3015 43.7574 11.2721 36.7279C9.51115 34.967 8.18872 32.9277 7.30892 30.7495C6.86587 29.6527 6.53544 28.5215 6.31741 27.3738L10.2471 26.6273C10.4168 27.5204 10.6738 28.3997 11.0178 29.2515C11.7001 30.9406 12.7263 32.5253 14.1005 33.8995C19.5678 39.3668 28.4322 39.3668 33.8995 33.8995C39.3668 28.4322 39.3668 19.5678 33.8995 14.1005Z" style={{ fill: `var(--${type})` }}/>
22
- <path d="M26 23.672V14.7613H22V23.672C22 24.7328 22.4214 25.7502 23.1715 26.5004L29.0858 32.4147L31.9142 29.5863L26 23.672Z" 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="M34.253 13.747C28.5904 8.08435 19.4096 8.08435 13.747 13.747C12.899 14.595 12.1789 15.5204 11.5859 16.5H19V19.5H10C8.067 19.5 6.5 17.933 6.5 16V7.00003H9.5L9.5 14.1967C10.1147 13.2896 10.8234 12.4279 11.6256 11.6256C18.4598 4.79146 29.5402 4.79146 36.3744 11.6256C43.2085 18.4598 43.2085 29.5402 36.3744 36.3744C29.5402 43.2085 18.4598 43.2085 11.6256 36.3744C9.91304 34.6618 8.62764 32.6793 7.77253 30.5623C7.34186 29.496 7.02061 28.3964 6.80863 27.2805L9.75592 26.7206C9.93164 27.6456 10.1978 28.5563 10.5542 29.4387C11.2612 31.189 12.3244 32.8305 13.747 34.253C19.4096 39.9157 28.5904 39.9157 34.253 34.253C39.9156 28.5904 39.9157 19.4096 34.253 13.747Z" style={{ fill: `var(--${type})` }}/>
29
- <path d="M25.5 23.672V14.7613H22.5V23.672C22.5 24.6002 22.8687 25.4905 23.5251 26.1468L29.4393 32.0612L31.5607 29.9399L25.6464 24.0255C25.5527 23.9318 25.5 23.8046 25.5 23.672Z" style={{ fill: `var(--${type})` }}/>
30
- </svg>
31
- ;
32
- }
33
- );
@@ -1,37 +0,0 @@
1
- import React, { forwardRef } from 'react';
2
- import { iconSizeMap } from '@liner-fe/design-token-primitive';
3
- import { IconProps } from '../../index';
4
-
5
- export const IconMenu = 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="M9 9.5H39V12.5H9V9.5Z" style={{ fill: `var(--${type})` }}/>
10
- <path d="M9 22.5H39V25.5H9V22.5Z" style={{ fill: `var(--${type})` }}/>
11
- <path d="M39 35.5H9V38.5H39V35.5Z" style={{ fill: `var(--${type})` }}/>
12
- </svg>
13
- ;
14
- } else if (fill) {
15
- return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
16
- <path d="M9 9.5H39V12.5H9V9.5Z" style={{ fill: `var(--${type})` }}/>
17
- <path d="M9 22.5H39V25.5H9V22.5Z" style={{ fill: `var(--${type})` }}/>
18
- <path d="M39 35.5H9V38.5H39V35.5Z" style={{ fill: `var(--${type})` }}/>
19
- </svg>
20
- ;
21
- } else if (thick) {
22
- return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
23
- <path d="M9 9H39V13H9V9Z" style={{ fill: `var(--${type})` }}/>
24
- <path d="M9 22H39V26H9V22Z" style={{ fill: `var(--${type})` }}/>
25
- <path d="M39 35H9V39H39V35Z" style={{ fill: `var(--${type})` }}/>
26
- </svg>
27
- ;
28
- }
29
-
30
- return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
31
- <path d="M9 9.5H39V12.5H9V9.5Z" style={{ fill: `var(--${type})` }}/>
32
- <path d="M9 22.5H39V25.5H9V22.5Z" style={{ fill: `var(--${type})` }}/>
33
- <path d="M39 35.5H9V38.5H39V35.5Z" style={{ fill: `var(--${type})` }}/>
34
- </svg>
35
- ;
36
- }
37
- );