@liner-fe/prism 1.13.34 → 1.13.36
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/index.d.ts +6 -0
- package/lib/assets/lp-pri-icon-m-casual-shoe.d.ts +8 -0
- package/lib/assets/lp-pri-icon-m-essay.d.ts +8 -0
- package/lib/assets/lp-pri-icon-m-folder-open-share.d.ts +8 -0
- package/lib/assets/lp-pri-icon-m-folder-share.d.ts +8 -0
- package/lib/assets/lp-pri-icon-m-formal-bag.d.ts +8 -0
- package/lib/assets/lp-pri-icon-m-highlighter.d.ts +8 -0
- package/lib/index.mjs +456 -143
- package/lib/index.mjs.map +4 -4
- package/lib/type/index.d.ts +1 -1
- package/package.json +1 -1
package/lib/assets/index.d.ts
CHANGED
|
@@ -147,3 +147,9 @@ export { ICLpPriIconMSheetExport } from './lp-pri-icon-m-sheet-export';
|
|
|
147
147
|
export { ICLpPriIconMShieldPerson } from './lp-pri-icon-m-shield-person';
|
|
148
148
|
export { ICLpPriIconMShieldUsage } from './lp-pri-icon-m-shield-usage';
|
|
149
149
|
export { ICHighlighter } from './highlighter';
|
|
150
|
+
export { ICLpPriIconMFormalBag } from './lp-pri-icon-m-formal-bag';
|
|
151
|
+
export { ICLpPriIconMCasualShoe } from './lp-pri-icon-m-casual-shoe';
|
|
152
|
+
export { ICLpPriIconMHighlighter } from './lp-pri-icon-m-highlighter';
|
|
153
|
+
export { ICLpPriIconMFolderOpenShare } from './lp-pri-icon-m-folder-open-share';
|
|
154
|
+
export { ICLpPriIconMFolderShare } from './lp-pri-icon-m-folder-share';
|
|
155
|
+
export { ICLpPriIconMEssay } from './lp-pri-icon-m-essay';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICLpPriIconMCasualShoeProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICLpPriIconMCasualShoe: (props: ICLpPriIconMCasualShoeProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICLpPriIconMFolderOpenShareProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICLpPriIconMFolderOpenShare: (props: ICLpPriIconMFolderOpenShareProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICLpPriIconMFolderShareProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICLpPriIconMFolderShare: (props: ICLpPriIconMFolderShareProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICLpPriIconMFormalBagProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICLpPriIconMFormalBag: (props: ICLpPriIconMFormalBagProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface ICLpPriIconMHighlighterProps {
|
|
2
|
+
color?: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
thick?: boolean;
|
|
5
|
+
size?: 16 | 20 | 24 | 32 | 40;
|
|
6
|
+
}
|
|
7
|
+
export declare const ICLpPriIconMHighlighter: (props: ICLpPriIconMHighlighterProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|