ados-rcm 1.1.24 → 1.1.26
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/AIcon/AIcon.d.ts +4 -0
- package/dist/index.cjs.js +17 -17
- package/dist/index.es.js +722 -716
- package/package.json +1 -1
@@ -24,6 +24,10 @@ export interface IAIconProps extends IASVGProps {
|
|
24
24
|
* <AIcon icon="Alert"/>
|
25
25
|
*/
|
26
26
|
export declare const AIcon: (props: IAIconProps) => import("react/jsx-runtime").JSX.Element;
|
27
|
+
interface IAIconHOCProps<T extends string> extends Omit<IAIconProps, 'icon'> {
|
28
|
+
icon: T | TIcons;
|
29
|
+
}
|
30
|
+
export declare const AIconHOC: <T extends string>(customIcons: Record<T, (props?: IASVGProps) => JSX.Element>) => (props: IAIconHOCProps<T>) => import("react/jsx-runtime").JSX.Element;
|
27
31
|
declare const Icons: Readonly<{
|
28
32
|
ArrowDown: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
29
33
|
ArrowUp: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|