|
|
@@ -43,6 +43,7 @@ const HighlightButton: FC<IHighlightButtonProps> = ({
|
|
|
customTheme,
|
|
|
titleStyle,
|
|
|
isLoading,
|
|
|
+ iconSize,
|
|
|
onPress,
|
|
|
title,
|
|
|
style,
|
|
|
@@ -98,7 +99,7 @@ const HighlightButton: FC<IHighlightButtonProps> = ({
|
|
|
};
|
|
|
|
|
|
const iconProps: NCoreUIKit.IconCallbackProps = {
|
|
|
- size: Number(typography[currentSize.fontSize].fontSize),
|
|
|
+ size: iconSize ? iconSize : Number(typography[currentSize.fontSize].fontSize),
|
|
|
color: currentType.iconColor
|
|
|
};
|
|
|
|