@liner-fe/prism 1.13.24 → 1.13.25

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 ICArrowBackwardProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICArrowBackward: (props: ICArrowBackwardProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -137,3 +137,6 @@ export { ICLpPriIconSDropUp } from './lp-pri-icon-s-drop-up';
137
137
  export { ICLpPriIconSArrowDropRight } from './lp-pri-icon-s-arrow-drop-right';
138
138
  export { ICLpPriIconMArrowUpDown } from './lp-pri-icon-m-arrow-up-down';
139
139
  export { ICLpPriIconMGoogleExport } from './lp-pri-icon-m-google-export';
140
+ export { ICArrowBackward } from './arrow-backward';
141
+ export { ICLink } from './link';
142
+ export { ICSheetExport } from './sheet-export';
@@ -0,0 +1,8 @@
1
+ interface ICLinkProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLink: (props: ICLinkProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICSheetExportProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICSheetExport: (props: ICSheetExportProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};