@liner-fe/prism 1.12.12 → 1.12.14

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.
@@ -129,3 +129,7 @@ export { ICBell } from './bell';
129
129
  export { ICSecretMode } from './secret-mode';
130
130
  export { ICAddClock } from './add-clock';
131
131
  export { ICClock } from './clock';
132
+ export { ICLpPriIconMSpinner } from './lp-pri-icon-m-spinner';
133
+ export { ICLpPriIconSDropDown } from './lp-pri-icon-s-drop-down';
134
+ export { ICLpPriIconMVolumeUp } from './lp-pri-icon-m-volume-up';
135
+ export { ICLpPriIconMVolume } from './lp-pri-icon-m-volume';
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMSpinnerProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMSpinner: (props: ICLpPriIconMSpinnerProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMVolumeUpProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMVolumeUp: (props: ICLpPriIconMVolumeUpProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconMVolumeProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconMVolume: (props: ICLpPriIconMVolumeProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ interface ICLpPriIconSDropDownProps {
2
+ color?: string;
3
+ fill?: boolean;
4
+ thick?: boolean;
5
+ size?: 16 | 20 | 24 | 32 | 40;
6
+ }
7
+ export declare const ICLpPriIconSDropDown: (props: ICLpPriIconSDropDownProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};