@liner-fe/prism 2.1.48 → 2.1.50

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 ICFocusProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICFocus: (props: ICFocusProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICHelpProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICHelp: (props: ICHelpProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -156,3 +156,7 @@ export { ICFlowchart } from './flowchart';
156
156
  export { ICShowAll } from './show-all';
157
157
  export { ICHideAll } from './hide-all';
158
158
  export { ICBrain } from './brain';
159
+ export { ICZoomIn } from './zoom-in';
160
+ export { ICZoomOut } from './zoom-out';
161
+ export { ICFocus } from './focus';
162
+ export { ICHelp } from './help';
@@ -0,0 +1,8 @@
1
+ interface ICZoomInProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICZoomIn: (props: ICZoomInProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICZoomOutProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICZoomOut: (props: ICZoomOutProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};