@liner-fe/icon 0.1.25 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ultra.cache.json +1 -1
- package/CHANGELOG.md +12 -0
- package/assets/align-center/index.tsx +41 -0
- package/assets/align-left/index.tsx +41 -0
- package/assets/align-right/index.tsx +41 -0
- package/assets/bold/index.tsx +29 -0
- package/assets/color-hwp/index.tsx +41 -0
- package/assets/color-image/index.tsx +37 -0
- package/assets/color-json/index.tsx +45 -0
- package/assets/color-kakaotalk/index.tsx +33 -0
- package/assets/color-xlsx/index.tsx +45 -0
- package/assets/color-xml/index.tsx +41 -0
- package/assets/italic/index.tsx +29 -0
- package/assets/left-indentation/index.tsx +41 -0
- package/assets/numbered-list/index.tsx +29 -0
- package/assets/right-indentation/index.tsx +41 -0
- package/assets/strikethrough/index.tsx +33 -0
- package/assets/underline/index.tsx +33 -0
- package/config/tsup/tsup.config.ts +3 -1
- package/index.tsx +17 -1
- package/lib/index.d.ts +34 -2
- package/lib/index.js +433 -1
- package/package.json +2 -3
|
@@ -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 IconNumberedList = 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="M42.2041 9.01074C43.2128 9.113 44 9.96435 44 11V37C44 38.0357 43.2128 38.887 42.2041 38.9893L42 39H6C4.96435 39 4.113 38.2128 4.01074 37.2041L4 37V11C4 9.89543 4.89543 9 6 9H42L42.2041 9.01074ZM7 30V36H15.5V30H7ZM18.5 30V36H41V30H18.5ZM7 27H15.5V21H7V27ZM18.5 27H41V21H18.5V27ZM7 18H41V12H7V18Z" 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="M42.2041 9.01074C43.2128 9.113 44 9.96435 44 11V37C44 38.0357 43.2128 38.887 42.2041 38.9893L42 39H6C4.96435 39 4.113 38.2128 4.01074 37.2041L4 37V11C4 9.89543 4.89543 9 6 9H42L42.2041 9.01074ZM7 30V36H15.5V30H7ZM18.5 30V36H41V30H18.5ZM7 27H15.5V21H7V27ZM18.5 27H41V21H18.5V27ZM7 18H41V12H7V18Z" style={{ fill: `var(--${type})` }}/>
|
|
15
|
+
</svg>
|
|
16
|
+
;
|
|
17
|
+
} else if (thick) {
|
|
18
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
19
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M42.2041 9.01074C43.2128 9.113 44 9.96435 44 11V37C44 38.0357 43.2128 38.887 42.2041 38.9893L42 39H6C4.96435 39 4.113 38.2128 4.01074 37.2041L4 37V11C4 9.89543 4.89543 9 6 9H42L42.2041 9.01074ZM7 30V36H15.5V30H7ZM18.5 30V36H41V30H18.5ZM7 27H15.5V21H7V27ZM18.5 27H41V21H18.5V27ZM7 18H41V12H7V18Z" style={{ fill: `var(--${type})` }}/>
|
|
20
|
+
</svg>
|
|
21
|
+
;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return <svg width={iconSizeMap[size]} height={iconSizeMap[size]} viewBox="0 0 48 48" fill="none" ref={ref} className={className} {...props}>
|
|
25
|
+
<path fillRule="evenodd" clipRule="evenodd" d="M42.2041 9.01074C43.2128 9.113 44 9.96435 44 11V37C44 38.0357 43.2128 38.887 42.2041 38.9893L42 39H6C4.96435 39 4.113 38.2128 4.01074 37.2041L4 37V11C4 9.89543 4.89543 9 6 9H42L42.2041 9.01074ZM7 30V36H15.5V30H7ZM18.5 30V36H41V30H18.5ZM7 27H15.5V21H7V27ZM18.5 27H41V21H18.5V27ZM7 18H41V12H7V18Z" style={{ fill: `var(--${type})` }}/>
|
|
26
|
+
</svg>
|
|
27
|
+
;
|
|
28
|
+
}
|
|
29
|
+
);
|
|
@@ -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 IconRightIndentation = 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="M41 38.5H7.00004V35.5H41V38.5Z" style={{ fill: `var(--${type})` }}/>
|
|
10
|
+
<path d="M18.0616 9.05859L9.12113 17.999L18.0616 26.9395L15.9405 29.0605L6.98051 20.1016C5.81976 18.9405 5.82052 17.0574 6.98148 15.8965L15.9405 6.9375L18.0616 9.05859Z" style={{ fill: `var(--${type})` }}/>
|
|
11
|
+
<path d="M41 25.5H22V22.5H41V25.5Z" style={{ fill: `var(--${type})` }}/>
|
|
12
|
+
<path d="M41 12.5H22V9.5H41V12.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 d="M41 38.5H7.00004V35.5H41V38.5Z" style={{ fill: `var(--${type})` }}/>
|
|
18
|
+
<path d="M18.0616 9.05859L9.12113 17.999L18.0616 26.9395L15.9405 29.0605L6.98051 20.1016C5.81976 18.9405 5.82052 17.0574 6.98148 15.8965L15.9405 6.9375L18.0616 9.05859Z" style={{ fill: `var(--${type})` }}/>
|
|
19
|
+
<path d="M41 25.5H22V22.5H41V25.5Z" style={{ fill: `var(--${type})` }}/>
|
|
20
|
+
<path d="M41 12.5H22V9.5H41V12.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 d="M41 38.5H7.00004V35.5H41V38.5Z" style={{ fill: `var(--${type})` }}/>
|
|
26
|
+
<path d="M18.0616 9.05859L9.12113 17.999L18.0616 26.9395L15.9405 29.0605L6.98051 20.1016C5.81976 18.9405 5.82052 17.0574 6.98148 15.8965L15.9405 6.9375L18.0616 9.05859Z" style={{ fill: `var(--${type})` }}/>
|
|
27
|
+
<path d="M41 25.5H22V22.5H41V25.5Z" style={{ fill: `var(--${type})` }}/>
|
|
28
|
+
<path d="M41 12.5H22V9.5H41V12.5Z" 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 d="M41 38.5H7.00004V35.5H41V38.5Z" style={{ fill: `var(--${type})` }}/>
|
|
35
|
+
<path d="M18.0616 9.05859L9.12113 17.999L18.0616 26.9395L15.9405 29.0605L6.98051 20.1016C5.81976 18.9405 5.82052 17.0574 6.98148 15.8965L15.9405 6.9375L18.0616 9.05859Z" style={{ fill: `var(--${type})` }}/>
|
|
36
|
+
<path d="M41 25.5H22V22.5H41V25.5Z" style={{ fill: `var(--${type})` }}/>
|
|
37
|
+
<path d="M41 12.5H22V9.5H41V12.5Z" style={{ fill: `var(--${type})` }}/>
|
|
38
|
+
</svg>
|
|
39
|
+
;
|
|
40
|
+
}
|
|
41
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconStrikethrough = 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.6396 28.5C34.999 29.3879 35.1748 30.4286 35.1748 31.6143C35.1748 33.0616 34.8991 34.3704 34.3398 35.5342C33.7821 36.6949 32.9826 37.6824 31.9453 38.4941L31.9434 38.4951C30.9089 39.2897 29.6915 39.8938 28.2959 40.3096L28.2949 40.3086C26.8983 40.7391 25.3663 40.9531 23.7012 40.9531C21.5188 40.9531 19.5407 40.5918 17.7715 39.8633C16.0183 39.1353 14.5549 38.0994 13.3896 36.7549L13.3887 36.7539C12.2356 35.4061 11.4662 33.8053 11.0791 31.959L11.0156 31.6533L11.3232 31.6016L14.165 31.1201L14.2344 31.3867C14.7538 33.4081 15.8579 34.9947 17.5537 36.1582L17.8789 36.3701C19.5273 37.3959 21.486 37.914 23.7666 37.9141C25.4192 37.9141 26.8671 37.6501 28.1162 37.1309C29.3665 36.6111 30.3294 35.8863 31.0186 34.9629C31.7033 34.0309 32.0488 32.9478 32.0488 31.7012C32.0488 30.7931 31.8808 30.0543 31.5625 29.4707L31.5596 29.4658C31.3695 29.1023 31.1451 28.7811 30.8877 28.5H34.6396Z" style={{ fill: `var(--${type})` }}/>
|
|
10
|
+
<path d="M23.4844 7.68848C25.4272 7.74649 27.1905 8.136 28.7695 8.8623L29.0811 9.00879C30.6237 9.75875 31.9016 10.793 32.9111 12.1104C34.0049 13.5187 34.7064 15.1858 35.0186 17.1035L35.0664 17.3955L31.877 17.958L31.834 17.6514C31.6376 16.2626 31.1338 15.0558 30.3262 14.0254L30.3252 14.0234C29.5286 12.9893 28.5073 12.1845 27.2568 11.6084C26.0081 11.0331 24.6137 10.7432 23.0693 10.7432H23.0664C21.5771 10.729 20.2708 10.9772 19.1406 11.4795L19.1396 11.4785C18.0178 11.9836 17.1467 12.6595 16.5137 13.499C15.8854 14.3323 15.5723 15.2708 15.5723 16.3242C15.5723 17.4277 15.8665 18.2782 16.4277 18.9072L16.6621 19.1445C17.2234 19.6832 17.8869 20.1177 18.6553 20.4473C19.5755 20.8355 20.4516 21.1514 21.2812 21.3945L25.0098 22.5H41V25.5H7V22.5H15.5879C15.0251 22.1234 14.5274 21.7096 14.0967 21.2568L14.0908 21.252C13.5148 20.6153 13.0681 19.8945 12.75 19.0918L12.748 19.0869C12.4432 18.2789 12.293 17.3858 12.293 16.4111C12.293 14.67 12.7596 13.134 13.6992 11.8154C14.5754 10.5859 15.7536 9.61845 17.2256 8.91211L17.5244 8.77441C19.1519 8.04307 21.0101 7.68164 23.0918 7.68164H23.0938L23.4844 7.68848Z" 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.6396 28.5C34.999 29.3879 35.1748 30.4286 35.1748 31.6143C35.1748 33.0616 34.8991 34.3704 34.3398 35.5342C33.7821 36.6949 32.9826 37.6824 31.9453 38.4941L31.9434 38.4951C30.9089 39.2897 29.6915 39.8938 28.2959 40.3096L28.2949 40.3086C26.8983 40.7391 25.3663 40.9531 23.7012 40.9531C21.5188 40.9531 19.5407 40.5918 17.7715 39.8633C16.0183 39.1353 14.5549 38.0994 13.3896 36.7549L13.3887 36.7539C12.2356 35.4061 11.4662 33.8053 11.0791 31.959L11.0156 31.6533L11.3232 31.6016L14.165 31.1201L14.2344 31.3867C14.7538 33.4081 15.8579 34.9947 17.5537 36.1582L17.8789 36.3701C19.5273 37.3959 21.486 37.914 23.7666 37.9141C25.4192 37.9141 26.8671 37.6501 28.1162 37.1309C29.3665 36.6111 30.3294 35.8863 31.0186 34.9629C31.7033 34.0309 32.0488 32.9478 32.0488 31.7012C32.0488 30.7931 31.8808 30.0543 31.5625 29.4707L31.5596 29.4658C31.3695 29.1023 31.1451 28.7811 30.8877 28.5H34.6396Z" style={{ fill: `var(--${type})` }}/>
|
|
16
|
+
<path d="M23.4844 7.68848C25.4272 7.74649 27.1905 8.136 28.7695 8.8623L29.0811 9.00879C30.6237 9.75875 31.9016 10.793 32.9111 12.1104C34.0049 13.5187 34.7064 15.1858 35.0186 17.1035L35.0664 17.3955L31.877 17.958L31.834 17.6514C31.6376 16.2626 31.1338 15.0558 30.3262 14.0254L30.3252 14.0234C29.5286 12.9893 28.5073 12.1845 27.2568 11.6084C26.0081 11.0331 24.6137 10.7432 23.0693 10.7432H23.0664C21.5771 10.729 20.2708 10.9772 19.1406 11.4795L19.1396 11.4785C18.0178 11.9836 17.1467 12.6595 16.5137 13.499C15.8854 14.3323 15.5723 15.2708 15.5723 16.3242C15.5723 17.4277 15.8665 18.2782 16.4277 18.9072L16.6621 19.1445C17.2234 19.6832 17.8869 20.1177 18.6553 20.4473C19.5755 20.8355 20.4516 21.1514 21.2812 21.3945L25.0098 22.5H41V25.5H7V22.5H15.5879C15.0251 22.1234 14.5274 21.7096 14.0967 21.2568L14.0908 21.252C13.5148 20.6153 13.0681 19.8945 12.75 19.0918L12.748 19.0869C12.4432 18.2789 12.293 17.3858 12.293 16.4111C12.293 14.67 12.7596 13.134 13.6992 11.8154C14.5754 10.5859 15.7536 9.61845 17.2256 8.91211L17.5244 8.77441C19.1519 8.04307 21.0101 7.68164 23.0918 7.68164H23.0938L23.4844 7.68848Z" 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="M34.6396 28.5C34.999 29.3879 35.1748 30.4286 35.1748 31.6143C35.1748 33.0616 34.8991 34.3704 34.3398 35.5342C33.7821 36.6949 32.9826 37.6824 31.9453 38.4941L31.9434 38.4951C30.9089 39.2897 29.6915 39.8938 28.2959 40.3096L28.2949 40.3086C26.8983 40.7391 25.3663 40.9531 23.7012 40.9531C21.5188 40.9531 19.5407 40.5918 17.7715 39.8633C16.0183 39.1353 14.5549 38.0994 13.3896 36.7549L13.3887 36.7539C12.2356 35.4061 11.4662 33.8053 11.0791 31.959L11.0156 31.6533L11.3232 31.6016L14.165 31.1201L14.2344 31.3867C14.7538 33.4081 15.8579 34.9947 17.5537 36.1582L17.8789 36.3701C19.5273 37.3959 21.486 37.914 23.7666 37.9141C25.4192 37.9141 26.8671 37.6501 28.1162 37.1309C29.3665 36.6111 30.3294 35.8863 31.0186 34.9629C31.7033 34.0309 32.0488 32.9478 32.0488 31.7012C32.0488 30.7931 31.8808 30.0543 31.5625 29.4707L31.5596 29.4658C31.3695 29.1023 31.1451 28.7811 30.8877 28.5H34.6396Z" style={{ fill: `var(--${type})` }}/>
|
|
22
|
+
<path d="M23.4844 7.68848C25.4272 7.74649 27.1905 8.136 28.7695 8.8623L29.0811 9.00879C30.6237 9.75875 31.9016 10.793 32.9111 12.1104C34.0049 13.5187 34.7064 15.1858 35.0186 17.1035L35.0664 17.3955L31.877 17.958L31.834 17.6514C31.6376 16.2626 31.1338 15.0558 30.3262 14.0254L30.3252 14.0234C29.5286 12.9893 28.5073 12.1845 27.2568 11.6084C26.0081 11.0331 24.6137 10.7432 23.0693 10.7432H23.0664C21.5771 10.729 20.2708 10.9772 19.1406 11.4795L19.1396 11.4785C18.0178 11.9836 17.1467 12.6595 16.5137 13.499C15.8854 14.3323 15.5723 15.2708 15.5723 16.3242C15.5723 17.4277 15.8665 18.2782 16.4277 18.9072L16.6621 19.1445C17.2234 19.6832 17.8869 20.1177 18.6553 20.4473C19.5755 20.8355 20.4516 21.1514 21.2812 21.3945L25.0098 22.5H41V25.5H7V22.5H15.5879C15.0251 22.1234 14.5274 21.7096 14.0967 21.2568L14.0908 21.252C13.5148 20.6153 13.0681 19.8945 12.75 19.0918L12.748 19.0869C12.4432 18.2789 12.293 17.3858 12.293 16.4111C12.293 14.67 12.7596 13.134 13.6992 11.8154C14.5754 10.5859 15.7536 9.61845 17.2256 8.91211L17.5244 8.77441C19.1519 8.04307 21.0101 7.68164 23.0918 7.68164H23.0938L23.4844 7.68848Z" 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.6396 28.5C34.999 29.3879 35.1748 30.4286 35.1748 31.6143C35.1748 33.0616 34.8991 34.3704 34.3398 35.5342C33.7821 36.6949 32.9826 37.6824 31.9453 38.4941L31.9434 38.4951C30.9089 39.2897 29.6915 39.8938 28.2959 40.3096L28.2949 40.3086C26.8983 40.7391 25.3663 40.9531 23.7012 40.9531C21.5188 40.9531 19.5407 40.5918 17.7715 39.8633C16.0183 39.1353 14.5549 38.0994 13.3896 36.7549L13.3887 36.7539C12.2356 35.4061 11.4662 33.8053 11.0791 31.959L11.0156 31.6533L11.3232 31.6016L14.165 31.1201L14.2344 31.3867C14.7538 33.4081 15.8579 34.9947 17.5537 36.1582L17.8789 36.3701C19.5273 37.3959 21.486 37.914 23.7666 37.9141C25.4192 37.9141 26.8671 37.6501 28.1162 37.1309C29.3665 36.6111 30.3294 35.8863 31.0186 34.9629C31.7033 34.0309 32.0488 32.9478 32.0488 31.7012C32.0488 30.7931 31.8808 30.0543 31.5625 29.4707L31.5596 29.4658C31.3695 29.1023 31.1451 28.7811 30.8877 28.5H34.6396Z" style={{ fill: `var(--${type})` }}/>
|
|
29
|
+
<path d="M23.4844 7.68848C25.4272 7.74649 27.1905 8.136 28.7695 8.8623L29.0811 9.00879C30.6237 9.75875 31.9016 10.793 32.9111 12.1104C34.0049 13.5187 34.7064 15.1858 35.0186 17.1035L35.0664 17.3955L31.877 17.958L31.834 17.6514C31.6376 16.2626 31.1338 15.0558 30.3262 14.0254L30.3252 14.0234C29.5286 12.9893 28.5073 12.1845 27.2568 11.6084C26.0081 11.0331 24.6137 10.7432 23.0693 10.7432H23.0664C21.5771 10.729 20.2708 10.9772 19.1406 11.4795L19.1396 11.4785C18.0178 11.9836 17.1467 12.6595 16.5137 13.499C15.8854 14.3323 15.5723 15.2708 15.5723 16.3242C15.5723 17.4277 15.8665 18.2782 16.4277 18.9072L16.6621 19.1445C17.2234 19.6832 17.8869 20.1177 18.6553 20.4473C19.5755 20.8355 20.4516 21.1514 21.2812 21.3945L25.0098 22.5H41V25.5H7V22.5H15.5879C15.0251 22.1234 14.5274 21.7096 14.0967 21.2568L14.0908 21.252C13.5148 20.6153 13.0681 19.8945 12.75 19.0918L12.748 19.0869C12.4432 18.2789 12.293 17.3858 12.293 16.4111C12.293 14.67 12.7596 13.134 13.6992 11.8154C14.5754 10.5859 15.7536 9.61845 17.2256 8.91211L17.5244 8.77441C19.1519 8.04307 21.0101 7.68164 23.0918 7.68164H23.0938L23.4844 7.68848Z" style={{ fill: `var(--${type})` }}/>
|
|
30
|
+
</svg>
|
|
31
|
+
;
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
import { iconSizeMap } from '@liner-fe/design-token-primitive';
|
|
3
|
+
import { IconProps } from '../../index';
|
|
4
|
+
|
|
5
|
+
export const IconUnderline = 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="M36 40.5H12V37.5H36V40.5Z" style={{ fill: `var(--${type})` }}/>
|
|
10
|
+
<path d="M15.5 24C15.5 28.6944 19.3056 32.5 24 32.5C28.6944 32.5 32.5 28.6944 32.5 24V9.5H35.5V24C35.5 30.3513 30.3513 35.5 24 35.5C17.6487 35.5 12.5 30.3513 12.5 24V9.5H15.5V24Z" 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="M36 40.5H12V37.5H36V40.5Z" style={{ fill: `var(--${type})` }}/>
|
|
16
|
+
<path d="M15.5 24C15.5 28.6944 19.3056 32.5 24 32.5C28.6944 32.5 32.5 28.6944 32.5 24V9.5H35.5V24C35.5 30.3513 30.3513 35.5 24 35.5C17.6487 35.5 12.5 30.3513 12.5 24V9.5H15.5V24Z" 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="M36 40.5H12V37.5H36V40.5Z" style={{ fill: `var(--${type})` }}/>
|
|
22
|
+
<path d="M15.5 24C15.5 28.6944 19.3056 32.5 24 32.5C28.6944 32.5 32.5 28.6944 32.5 24V9.5H35.5V24C35.5 30.3513 30.3513 35.5 24 35.5C17.6487 35.5 12.5 30.3513 12.5 24V9.5H15.5V24Z" 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="M36 40.5H12V37.5H36V40.5Z" style={{ fill: `var(--${type})` }}/>
|
|
29
|
+
<path d="M15.5 24C15.5 28.6944 19.3056 32.5 24 32.5C28.6944 32.5 32.5 28.6944 32.5 24V9.5H35.5V24C35.5 30.3513 30.3513 35.5 24 35.5C17.6487 35.5 12.5 30.3513 12.5 24V9.5H15.5V24Z" style={{ fill: `var(--${type})` }}/>
|
|
30
|
+
</svg>
|
|
31
|
+
;
|
|
32
|
+
}
|
|
33
|
+
);
|
|
@@ -9,5 +9,7 @@ export default defineConfig({
|
|
|
9
9
|
platform: 'neutral',
|
|
10
10
|
dts: true,
|
|
11
11
|
treeshake: true,
|
|
12
|
-
|
|
12
|
+
// @liner-fe/templates의 Storybook이 동작하지 않는 이슈가 있어서 비활성화
|
|
13
|
+
// 멀티 레포 환경에서는 되는데 왜 안되는지 모르겠음
|
|
14
|
+
skipNodeModulesBundle: process.env.CI === 'true',
|
|
13
15
|
});
|
package/index.tsx
CHANGED
|
@@ -211,8 +211,24 @@ export { IconViewSidebar } from './assets/view-sidebar';
|
|
|
211
211
|
export { IconAddEmoji } from './assets/add-emoji';
|
|
212
212
|
export { IconColorHypothesisEvaluator } from './assets/color-hypothesis-evaluator';
|
|
213
213
|
export { IconColorSurveyGenerator } from './assets/color-survey-generator';
|
|
214
|
+
export { IconBold } from './assets/bold';
|
|
215
|
+
export { IconItalic } from './assets/italic';
|
|
216
|
+
export { IconUnderline } from './assets/underline';
|
|
217
|
+
export { IconStrikethrough } from './assets/strikethrough';
|
|
218
|
+
export { IconAlignLeft } from './assets/align-left';
|
|
219
|
+
export { IconAlignCenter } from './assets/align-center';
|
|
220
|
+
export { IconAlignRight } from './assets/align-right';
|
|
221
|
+
export { IconLeftIndentation } from './assets/left-indentation';
|
|
222
|
+
export { IconRightIndentation } from './assets/right-indentation';
|
|
223
|
+
export { IconNumberedList } from './assets/numbered-list';
|
|
224
|
+
export { IconColorKakaotalk } from './assets/color-kakaotalk';
|
|
225
|
+
export { IconColorHwp } from './assets/color-hwp';
|
|
226
|
+
export { IconColorXml } from './assets/color-xml';
|
|
227
|
+
export { IconColorXlsx } from './assets/color-xlsx';
|
|
228
|
+
export { IconColorJson } from './assets/color-json';
|
|
229
|
+
export { IconColorImage } from './assets/color-image';
|
|
214
230
|
|
|
215
|
-
export type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link" | "color-hypothesis-generator" | "color-citation-recommender" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer" | "at-sign" | "color-peer-review" | "adjustment" | "view-sidebar" | "add-emoji" | "color-hypothesis-evaluator" | "color-survey-generator";
|
|
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";
|
|
216
232
|
|
|
217
233
|
export type IconSizeKey = keyof typeof iconSizeMap;
|
|
218
234
|
|
package/lib/index.d.ts
CHANGED
|
@@ -423,7 +423,39 @@ declare const IconColorHypothesisEvaluator: React.ForwardRefExoticComponent<Omit
|
|
|
423
423
|
|
|
424
424
|
declare const IconColorSurveyGenerator: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
425
425
|
|
|
426
|
-
|
|
426
|
+
declare const IconBold: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
427
|
+
|
|
428
|
+
declare const IconItalic: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
429
|
+
|
|
430
|
+
declare const IconUnderline: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
431
|
+
|
|
432
|
+
declare const IconStrikethrough: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
433
|
+
|
|
434
|
+
declare const IconAlignLeft: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
435
|
+
|
|
436
|
+
declare const IconAlignCenter: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
437
|
+
|
|
438
|
+
declare const IconAlignRight: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
439
|
+
|
|
440
|
+
declare const IconLeftIndentation: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
441
|
+
|
|
442
|
+
declare const IconRightIndentation: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
443
|
+
|
|
444
|
+
declare const IconNumberedList: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
445
|
+
|
|
446
|
+
declare const IconColorKakaotalk: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
447
|
+
|
|
448
|
+
declare const IconColorHwp: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
449
|
+
|
|
450
|
+
declare const IconColorXml: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
451
|
+
|
|
452
|
+
declare const IconColorXlsx: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
453
|
+
|
|
454
|
+
declare const IconColorJson: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
455
|
+
|
|
456
|
+
declare const IconColorImage: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
457
|
+
|
|
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";
|
|
427
459
|
type IconSizeKey = keyof typeof iconSizeMap;
|
|
428
460
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
429
461
|
fill?: boolean;
|
|
@@ -435,4 +467,4 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
|
435
467
|
}
|
|
436
468
|
type IconComponentType = React.ForwardRefExoticComponent<Omit<IconProps, 'ref'> & React.RefAttributes<SVGSVGElement>>;
|
|
437
469
|
|
|
438
|
-
export { IconAddClock, IconAddEmoji, IconAddToFolder, IconAdjustment, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconAtSign, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorCitationRecommender, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorHypothesisEvaluator, IconColorHypothesisGenerator, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveyGenerator, IconColorSurveySimulator, IconColorTxt, type IconComponentType, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, type IconName, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconViewSidebar, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|
|
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 };
|