@liner-fe/prism 1.3.7 → 1.6.2

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.
Files changed (80) hide show
  1. package/lib/assets/ai.d.ts +4 -3
  2. package/lib/assets/arrow-back.d.ts +8 -0
  3. package/lib/assets/arrow-down.d.ts +8 -0
  4. package/lib/assets/arrow-forward.d.ts +8 -0
  5. package/lib/assets/arrow-up.d.ts +8 -0
  6. package/lib/assets/balance.d.ts +4 -3
  7. package/lib/assets/books.d.ts +5 -3
  8. package/lib/assets/chart-bar.d.ts +5 -3
  9. package/lib/assets/chart-line-uptrend.d.ts +4 -3
  10. package/lib/assets/check-mark.d.ts +5 -3
  11. package/lib/assets/close.d.ts +4 -3
  12. package/lib/assets/copy.d.ts +8 -0
  13. package/lib/assets/credit.d.ts +8 -0
  14. package/lib/assets/creditcard.d.ts +8 -0
  15. package/lib/assets/document-add.d.ts +8 -0
  16. package/lib/assets/document.d.ts +4 -3
  17. package/lib/assets/download.d.ts +8 -0
  18. package/lib/assets/end.d.ts +8 -0
  19. package/lib/assets/exclamationmark.d.ts +4 -3
  20. package/lib/assets/feedback.d.ts +8 -0
  21. package/lib/assets/folder.d.ts +5 -3
  22. package/lib/assets/globe.d.ts +4 -3
  23. package/lib/assets/graduationcap.d.ts +5 -3
  24. package/lib/assets/highlighter.d.ts +8 -0
  25. package/lib/assets/history.d.ts +4 -2
  26. package/lib/assets/index.d.ts +43 -21
  27. package/lib/assets/light.d.ts +8 -0
  28. package/lib/assets/lock.d.ts +5 -3
  29. package/lib/assets/memo.d.ts +4 -3
  30. package/lib/assets/menu.d.ts +8 -0
  31. package/lib/assets/minus.d.ts +8 -0
  32. package/lib/assets/move.d.ts +4 -3
  33. package/lib/assets/new-thread.d.ts +4 -3
  34. package/lib/assets/palette.d.ts +4 -3
  35. package/lib/assets/paperclip.d.ts +5 -3
  36. package/lib/assets/pencil.d.ts +8 -0
  37. package/lib/assets/person-add.d.ts +4 -3
  38. package/lib/assets/person.d.ts +4 -3
  39. package/lib/assets/plus.d.ts +4 -3
  40. package/lib/assets/question-message.d.ts +8 -0
  41. package/lib/assets/regenerate.d.ts +8 -0
  42. package/lib/assets/search.d.ts +4 -3
  43. package/lib/assets/send.d.ts +4 -3
  44. package/lib/assets/share.d.ts +4 -3
  45. package/lib/assets/sign-out.d.ts +8 -0
  46. package/lib/assets/speaker.d.ts +8 -0
  47. package/lib/assets/stack.d.ts +4 -3
  48. package/lib/assets/start.d.ts +4 -3
  49. package/lib/assets/summarize.d.ts +8 -0
  50. package/lib/assets/trash.d.ts +5 -3
  51. package/lib/assets/tune.d.ts +8 -0
  52. package/lib/components/Button/index.d.ts +10 -16
  53. package/lib/components/Icon/index.d.ts +27 -0
  54. package/lib/components/IconButton/index.d.ts +18 -0
  55. package/lib/components/Popover/index.d.ts +3 -0
  56. package/lib/index.css +123 -58
  57. package/lib/index.css.map +3 -3
  58. package/lib/index.mjs +2652 -57
  59. package/lib/index.mjs.map +4 -4
  60. package/lib/token/color/index.d.ts +4 -0
  61. package/lib/token/typography/Display.d.ts +7 -0
  62. package/lib/token/typography/Heading.d.ts +6 -0
  63. package/lib/token/typography/Paragraph.d.ts +19 -0
  64. package/lib/token/typography/Title.d.ts +8 -0
  65. package/lib/token/typography/index.d.ts +1 -0
  66. package/lib/token/typography/types.d.ts +8 -0
  67. package/lib/type/index.d.ts +11 -0
  68. package/lib/utils/icon.d.ts +2 -0
  69. package/package.json +4 -1
  70. package/lib/components/Button/index.stories.d.ts +0 -33
  71. package/lib/components/Popover/index.stories.d.ts +0 -36
  72. package/lib/components/Toast/index.stories.d.ts +0 -6
  73. package/lib/components/Tooltip/index.stories.d.ts +0 -13
  74. package/lib/design-token/color/index.d.ts +0 -5
  75. package/lib/design-token/typography/index.d.ts +0 -1
  76. package/lib/index.cjs +0 -155
  77. package/lib/index.cjs.map +0 -7
  78. /package/lib/{design-token → token}/border-radius/index.d.ts +0 -0
  79. /package/lib/{design-token → token}/opacity/index.d.ts +0 -0
  80. /package/lib/{design-token → token}/size/index.d.ts +0 -0
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICAiProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICAi: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICAi: (props: ICAiProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICArrowBackProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowBack: (props: ICArrowBackProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICArrowDownProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowDown: (props: ICArrowDownProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICArrowForwardProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowForward: (props: ICArrowForwardProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICArrowUpProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowUp: (props: ICArrowUpProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICBalanceProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICBalance: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICBalance: (props: ICBalanceProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICBooksProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICBooks: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICBooks: (props: ICBooksProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICChartBarProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICChartBar: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICChartBar: (props: ICChartBarProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICChartLineUptrendProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICChartLineUptrend: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICChartLineUptrend: (props: ICChartLineUptrendProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICCheckMarkProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICCheckMark: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICCheckMark: (props: ICCheckMarkProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICCloseProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICClose: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICClose: (props: ICCloseProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICCopyProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICCopy: (props: ICCopyProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICCreditProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICCredit: (props: ICCreditProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICCreditcardProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICCreditcard: (props: ICCreditcardProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICDocumentAddProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICDocumentAdd: (props: ICDocumentAddProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICDocumentProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICDocument: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICDocument: (props: ICDocumentProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICDownloadProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICDownload: (props: ICDownloadProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICEndProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICEnd: (props: ICEndProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICExclamationmarkProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICExclamationmark: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICExclamationmark: (props: ICExclamationmarkProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICFeedbackProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICFeedback: (props: ICFeedbackProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICFolderProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICFolder: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICFolder: (props: ICFolderProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICGlobeProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICGlobe: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICGlobe: (props: ICGlobeProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICGraduationcapProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICGraduationcap: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICGraduationcap: (props: ICGraduationcapProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICHighlighterProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICHighlighter: (props: ICHighlighterProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,9 @@
1
1
  import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
2
+ interface ICHistoryProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
3
3
  color?: string;
4
+ fill?: boolean;
4
5
  thick?: boolean;
6
+ size?: 16 | 20 | 24 | 32 | 40;
5
7
  }
6
- export declare const ICHistory: (props: IProps) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const ICHistory: (props: ICHistoryProps) => import("react/jsx-runtime").JSX.Element;
7
9
  export {};
@@ -1,28 +1,50 @@
1
+ export { ICHistory } from './history';
2
+ export { ICStart } from './start';
3
+ export { ICEnd } from './end';
1
4
  export { ICPaperclip } from './paperclip';
2
- export { ICFolder } from './folder';
3
- export { ICTrash } from './trash';
4
- export { ICBooks } from './books';
5
- export { ICChartBar } from './chart-bar';
6
- export { ICLock } from './lock';
7
- export { ICCheckMark } from './check-mark';
8
- export { ICGraduationcap } from './graduationcap';
9
- export { ICMove } from './move';
5
+ export { ICShare } from './share';
6
+ export { ICSignOut } from './sign-out';
7
+ export { ICPlus } from './plus';
8
+ export { ICMinus } from './minus';
10
9
  export { ICNewThread } from './new-thread';
11
- export { ICPalette } from './palette';
12
- export { ICMemo } from './memo';
10
+ export { ICMove } from './move';
13
11
  export { ICSearch } from './search';
14
- export { ICStart } from './start';
15
- export { ICHistory } from './history';
16
- export { ICChartLineUptrend } from './chart-line-uptrend';
17
12
  export { ICGlobe } from './globe';
18
- export { ICShare } from './share';
19
- export { ICStack } from './stack';
20
- export { ICPlus } from './plus';
13
+ export { ICGraduationcap } from './graduationcap';
14
+ export { ICPalette } from './palette';
15
+ export { ICDownload } from './download';
16
+ export { ICRegenerate } from './regenerate';
17
+ export { ICCredit } from './credit';
18
+ export { ICFeedback } from './feedback';
19
+ export { ICTune } from './tune';
20
+ export { ICArrowBack } from './arrow-back';
21
+ export { ICArrowForward } from './arrow-forward';
22
+ export { ICArrowUp } from './arrow-up';
23
+ export { ICArrowDown } from './arrow-down';
24
+ export { ICMenu } from './menu';
25
+ export { ICChartBar } from './chart-bar';
26
+ export { ICChartLineUptrend } from './chart-line-uptrend';
27
+ export { ICFolder } from './folder';
28
+ export { ICPerson } from './person';
29
+ export { ICTrash } from './trash';
30
+ export { ICPencil } from './pencil';
31
+ export { ICCopy } from './copy';
32
+ export { ICQuestionMessage } from './question-message';
33
+ export { ICBooks } from './books';
21
34
  export { ICBalance } from './balance';
22
- export { ICExclamationmark } from './exclamationmark';
23
- export { ICSend } from './send';
35
+ export { ICDocument } from './document';
24
36
  export { ICPersonAdd } from './person-add';
25
- export { ICAi } from './ai';
26
- export { ICPerson } from './person';
37
+ export { ICSend } from './send';
38
+ export { ICCheckMark } from './check-mark';
39
+ export { ICExclamationmark } from './exclamationmark';
27
40
  export { ICClose } from './close';
28
- export { ICDocument } from './document';
41
+ export { ICLock } from './lock';
42
+ export { ICAi } from './ai';
43
+ export { ICStack } from './stack';
44
+ export { ICSummarize } from './summarize';
45
+ export { ICMemo } from './memo';
46
+ export { ICHighlighter } from './highlighter';
47
+ export { ICCreditcard } from './creditcard';
48
+ export { ICSpeaker } from './speaker';
49
+ export { ICLight } from './light';
50
+ export { ICDocumentAdd } from './document-add';
@@ -0,0 +1,8 @@
1
+ interface ICLightProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLight: (props: ICLightProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICLockProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICLock: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICLock: (props: ICLockProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICMemoProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICMemo: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICMemo: (props: ICMemoProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICMenuProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICMenu: (props: ICMenuProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICMinusProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICMinus: (props: ICMinusProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICMoveProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICMove: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICMove: (props: ICMoveProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICNewThreadProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICNewThread: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICNewThread: (props: ICNewThreadProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICPaletteProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICPalette: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICPalette: (props: ICPaletteProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,6 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICPaperclipProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
4
6
  }
5
- export declare const ICPaperclip: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICPaperclip: (props: ICPaperclipProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICPencilProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICPencil: (props: ICPencilProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICPersonAddProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICPersonAdd: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICPersonAdd: (props: ICPersonAddProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICPersonProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICPerson: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICPerson: (props: ICPersonProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICPlusProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICPlus: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICPlus: (props: ICPlusProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICQuestionMessageProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICQuestionMessage: (props: ICQuestionMessageProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICRegenerateProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICRegenerate: (props: ICRegenerateProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICSearchProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICSearch: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICSearch: (props: ICSearchProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICSendProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICSend: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICSend: (props: ICSendProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICShareProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICShare: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICShare: (props: ICShareProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICSignOutProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICSignOut: (props: ICSignOutProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICSpeakerProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICSpeaker: (props: ICSpeakerProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICStackProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICStack: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICStack: (props: ICStackProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,7 +1,8 @@
1
- import { SVGProps } from 'react';
2
- interface IProps extends SVGProps<SVGSVGElement> {
1
+ interface ICStartProps {
3
2
  color?: string;
3
+ fill?: boolean;
4
4
  thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
5
6
  }
6
- export declare const ICStart: (props: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const ICStart: (props: ICStartProps) => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -0,0 +1,8 @@
1
+ interface ICSummarizeProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICSummarize: (props: ICSummarizeProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};