ados-rcm 1.1.72 → 1.1.74
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/AButton/AIconButton.d.ts +1 -2
- package/dist/index.cjs.js +422 -318
- package/dist/index.es.js +41819 -31811
- package/package.json +1 -1
@@ -3,7 +3,7 @@ import { IABaseProps } from '../ABase/ABase';
|
|
3
3
|
import { TIcons } from '../AIcon/AIcon';
|
4
4
|
export declare const AIconButtonTypes: readonly ["Primary", "Raw"];
|
5
5
|
export type TAIconButtonTypes = (typeof AIconButtonTypes)[number];
|
6
|
-
interface IAIconButtonProps extends IABaseProps {
|
6
|
+
export interface IAIconButtonProps extends IABaseProps {
|
7
7
|
/**
|
8
8
|
* icon : TIcons | Exclude<React.ReactNode, string>;
|
9
9
|
*
|
@@ -31,4 +31,3 @@ interface IAIconButtonProps extends IABaseProps {
|
|
31
31
|
* onClick={onClick}/>
|
32
32
|
*/
|
33
33
|
export declare const AIconButton: (props: IAIconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
34
|
-
export {};
|