@liner-fe/prism 2.0.0 → 2.1.1

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.
@@ -154,3 +154,4 @@ export { ICLpPriIconMFolderOpenShare } from './lp-pri-icon-m-folder-open-share';
154
154
  export { ICLpPriIconMFolderShare } from './lp-pri-icon-m-folder-share';
155
155
  export { ICLpPriIconMEssay } from './lp-pri-icon-m-essay';
156
156
  export { ICLpPriIconMUndo } from './lp-pri-icon-m-undo';
157
+ export { ICLpPriIconMRedo } from './lp-pri-icon-m-redo';
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMRedoProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMRedo: (props: ICLpPriIconMRedoProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};