@liner-fe/prism 1.13.27 → 1.13.29

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.
@@ -140,3 +140,9 @@ export { ICLpPriIconMGoogleExport } from './lp-pri-icon-m-google-export';
140
140
  export { ICArrowBackward } from './arrow-backward';
141
141
  export { ICLink } from './link';
142
142
  export { ICSheetExport } from './sheet-export';
143
+ export { ICLpPriIconSArrowBackward } from './lp-pri-icon-s-arrow-backward';
144
+ export { ICLpPriIconSArrowForward } from './lp-pri-icon-s-arrow-forward';
145
+ export { ICLpPriIconMLink } from './lp-pri-icon-m-link';
146
+ export { ICLpPriIconMSheetExport } from './lp-pri-icon-m-sheet-export';
147
+ export { ICLpPriIconMShieldPerson } from './lp-pri-icon-m-shield-person';
148
+ export { ICLpPriIconMShieldUsage } from './lp-pri-icon-m-shield-usage';
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMLinkProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMLink: (props: ICLpPriIconMLinkProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMSheetExportProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMSheetExport: (props: ICLpPriIconMSheetExportProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMShieldPersonProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMShieldPerson: (props: ICLpPriIconMShieldPersonProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMShieldUsageProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMShieldUsage: (props: ICLpPriIconMShieldUsageProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconSArrowBackwardProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconSArrowBackward: (props: ICLpPriIconSArrowBackwardProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconSArrowForwarddProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconSArrowForward: (props: ICLpPriIconSArrowForwarddProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};