Skip to content

Commit 74274d3

Browse files
authored
Merge pull request #4916 from GeekyAnts/fix/build-issue-3.4.0
feat: build issue
2 parents 664c7fd + 5858eb4 commit 74274d3

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/components/composites/IconButton/types.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ import type { ThemeComponentSizeType } from '../../../components/types/utils';
77
export interface InterfaceIconButtonProps
88
extends Omit<
99
InterfacePressableProps,
10-
'children' | 'color' | '_light' | '_dark' | '_web' | '_android' | '_ios'
10+
| 'children'
11+
| 'color'
12+
| '_light'
13+
| '_dark'
14+
| '_web'
15+
| '_android'
16+
| '_ios'
17+
| '_important'
1118
>,
1219
Omit<
1320
IIconProps,
@@ -25,6 +32,7 @@ export interface InterfaceIconButtonProps
2532
| '_web'
2633
| '_android'
2734
| '_ios'
35+
| '_important'
2836
>,
2937
PlatformProps<IIconButtonProps> {
3038
/**

src/components/primitives/TextArea/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { PlatformProps } from '../../../components/types';
99
export interface ITextAreaProps
1010
extends Omit<
1111
InterfaceInputProps,
12-
'_web' | '_android' | '_ios' | '_light' | '_dark'
12+
'_web' | '_android' | '_ios' | '_light' | '_dark' | '_important'
1313
>,
1414
PlatformProps<ITextAreaProps> {
1515
/**

0 commit comments

Comments
 (0)