@liner-fe/prism 1.6.5 → 1.6.6
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/lib/assets/arrow-right.d.ts +8 -0
- package/lib/assets/check-mark-fill.d.ts +8 -0
- package/lib/assets/close-fill.d.ts +2 -2
- package/lib/assets/document-warning.d.ts +8 -0
- package/lib/assets/exclamationmark-fill.d.ts +8 -0
- package/lib/assets/folder-add.d.ts +8 -0
- package/lib/assets/history.d.ts +1 -2
- package/lib/assets/index.d.ts +11 -1
- package/lib/assets/liner-variation.d.ts +8 -0
- package/lib/assets/liner.d.ts +8 -0
- package/lib/assets/more.d.ts +8 -0
- package/lib/assets/thumb-down.d.ts +8 -0
- package/lib/assets/thumb-up.d.ts +8 -0
- package/lib/index.mjs +1069 -661
- package/lib/index.mjs.map +4 -4
- package/lib/type/index.d.ts +1 -1
- package/package.json +1 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
interface
|
|
1
|
+
interface ICCloseFillProps {
|
|
2
2
|
color?: string;
|
|
3
3
|
fill?: boolean;
|
|
4
4
|
thick?: boolean;
|
|
5
5
|
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
6
|
}
|
|
7
|
-
export declare const ICCloseFill: (props:
|
|
7
|
+
export declare const ICCloseFill: (props: ICCloseFillProps) => import("react/jsx-runtime").JSX.Element | undefined;
|
|
8
8
|
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICExclamationmarkFillProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICExclamationmarkFill: (props: ICExclamationmarkFillProps) => import("react/jsx-runtime").JSX.Element | undefined;
|
|
8
|
+
export {};
|
package/lib/assets/history.d.ts
CHANGED
package/lib/assets/index.d.ts
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
export { ICCloseFill } from './close-fill';
|
|
2
|
+
export { ICMore } from './more';
|
|
3
|
+
export { ICLiner } from './liner';
|
|
4
|
+
export { ICLinerVariation } from './liner-variation';
|
|
1
5
|
export { ICHistory } from './history';
|
|
2
6
|
export { ICStart } from './start';
|
|
3
7
|
export { ICEnd } from './end';
|
|
4
8
|
export { ICPaperclip } from './paperclip';
|
|
5
9
|
export { ICShare } from './share';
|
|
6
10
|
export { ICSignOut } from './sign-out';
|
|
11
|
+
export { ICCheckMarkFill } from './check-mark-fill';
|
|
12
|
+
export { ICExclamationmarkFill } from './exclamationmark-fill';
|
|
7
13
|
export { ICPlus } from './plus';
|
|
8
14
|
export { ICMinus } from './minus';
|
|
9
15
|
export { ICNewThread } from './new-thread';
|
|
@@ -22,6 +28,8 @@ export { ICArrowForward } from './arrow-forward';
|
|
|
22
28
|
export { ICArrowUp } from './arrow-up';
|
|
23
29
|
export { ICArrowDown } from './arrow-down';
|
|
24
30
|
export { ICMenu } from './menu';
|
|
31
|
+
export { ICDocumentWarning } from './document-warning';
|
|
32
|
+
export { ICArrowRight } from './arrow-right';
|
|
25
33
|
export { ICChartBar } from './chart-bar';
|
|
26
34
|
export { ICChartLineUptrend } from './chart-line-uptrend';
|
|
27
35
|
export { ICFolder } from './folder';
|
|
@@ -32,13 +40,13 @@ export { ICCopy } from './copy';
|
|
|
32
40
|
export { ICQuestionMessage } from './question-message';
|
|
33
41
|
export { ICBooks } from './books';
|
|
34
42
|
export { ICBalance } from './balance';
|
|
43
|
+
export { ICFolderAdd } from './folder-add';
|
|
35
44
|
export { ICDocument } from './document';
|
|
36
45
|
export { ICPersonAdd } from './person-add';
|
|
37
46
|
export { ICSend } from './send';
|
|
38
47
|
export { ICCheckMark } from './check-mark';
|
|
39
48
|
export { ICExclamationmark } from './exclamationmark';
|
|
40
49
|
export { ICClose } from './close';
|
|
41
|
-
export { ICCloseFill } from './close-fill';
|
|
42
50
|
export { ICLock } from './lock';
|
|
43
51
|
export { ICAi } from './ai';
|
|
44
52
|
export { ICStack } from './stack';
|
|
@@ -49,3 +57,5 @@ export { ICCreditcard } from './creditcard';
|
|
|
49
57
|
export { ICSpeaker } from './speaker';
|
|
50
58
|
export { ICLight } from './light';
|
|
51
59
|
export { ICDocumentAdd } from './document-add';
|
|
60
|
+
export { ICThumbUp } from './thumb-up';
|
|
61
|
+
export { ICThumbDown } from './thumb-down';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICLinerVariationProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICLinerVariation: (props: ICLinerVariationProps) => import("react/jsx-runtime").JSX.Element | undefined;
|
|
8
|
+
export {};
|