@liner-fe/prism 1.12.2 → 1.12.4

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 ICBellProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICBell: (props: ICBellProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -125,3 +125,5 @@ export { ICTimer } from './timer';
125
125
  export { ICPlayButton } from './play-button';
126
126
  export { ICTextSelect } from './text-select';
127
127
  export { ICArrowDropDown } from './arrow-drop-down';
128
+ export { ICBell } from './bell';
129
+ export { ICSecretMode } from './secret-mode';
@@ -0,0 +1,8 @@
1
+ interface ICSecretModeProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICSecretMode: (props: ICSecretModeProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};