@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.
@@ -0,0 +1,8 @@
1
+ interface ICArrowRightProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowRight: (props: ICArrowRightProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICCheckMarkFillProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICCheckMarkFill: (props: ICCheckMarkFillProps) => import("react/jsx-runtime").JSX.Element | undefined;
8
+ export {};
@@ -1,8 +1,8 @@
1
- interface ICCloseProps {
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: ICCloseProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICCloseFill: (props: ICCloseFillProps) => import("react/jsx-runtime").JSX.Element | undefined;
8
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICDocumentWarningProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICDocumentWarning: (props: ICDocumentWarningProps) => import("react/jsx-runtime").JSX.Element;
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 {};
@@ -0,0 +1,8 @@
1
+ interface ICFolderAddProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICFolderAdd: (props: ICFolderAddProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,5 +1,4 @@
1
- import { SVGProps } from 'react';
2
- interface ICHistoryProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
1
+ interface ICHistoryProps {
3
2
  color?: string;
4
3
  fill?: boolean;
5
4
  thick?: boolean;
@@ -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 {};
@@ -0,0 +1,8 @@
1
+ interface ICLinerProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLiner: (props: ICLinerProps) => import("react/jsx-runtime").JSX.Element | undefined;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICMoreProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICMore: (props: ICMoreProps) => import("react/jsx-runtime").JSX.Element | undefined;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICThumbDownProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICThumbDown: (props: ICThumbDownProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICThumbUpProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICThumbUp: (props: ICThumbUpProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};