ados-rcm 1.1.297 → 1.1.298
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { IABaseProps } from '../ABase/ABase';
|
3
|
-
import { TIcons } from '../AIcon/AIcon';
|
3
|
+
import { TIconSize, TIcons } from '../AIcon/AIcon';
|
4
4
|
export declare const AIconButtonTypes: readonly ["Primary", "Secondary", "Raw"];
|
5
5
|
export type TAIconButtonTypes = (typeof AIconButtonTypes)[number];
|
6
6
|
export interface IAIconButtonProps extends IABaseProps {
|
@@ -16,6 +16,12 @@ export interface IAIconButtonProps extends IABaseProps {
|
|
16
16
|
* Description : type of AIconButton
|
17
17
|
*/
|
18
18
|
type?: TAIconButtonTypes;
|
19
|
+
/**
|
20
|
+
* iconSize? : number
|
21
|
+
*
|
22
|
+
* Description : size of icon.
|
23
|
+
*/
|
24
|
+
iconSize?: TIconSize;
|
19
25
|
}
|
20
26
|
/**
|
21
27
|
* AComponent : AIconButton
|