@liner-fe/prism 2.1.41 → 2.1.43

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 ICBrainProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICBrain: (props: ICBrainProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICFlowchartProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICFlowchart: (props: ICFlowchartProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICHideAllProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICHideAll: (props: ICHideAllProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -151,3 +151,8 @@ export { ICVolume } from './volume';
151
151
  export { ICFolderOpenShare } from './folder-open-share';
152
152
  export { ICFolderShare } from './folder-share';
153
153
  export { ICReport } from './report';
154
+ export { ICMindmap } from './mindmap';
155
+ export { ICFlowchart } from './flowchart';
156
+ export { ICShowAll } from './show-all';
157
+ export { ICHideAll } from './hide-all';
158
+ export { ICBrain } from './brain';
@@ -0,0 +1,8 @@
1
+ interface ICMindmapProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICMindmap: (props: ICMindmapProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICShowAllProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICShowAll: (props: ICShowAllProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};