This commit is contained in:
Diego Mello 2024-04-25 17:57:17 -03:00
parent 5593a2056e
commit 65657dca69
4 changed files with 224 additions and 274 deletions

View File

@ -11,7 +11,7 @@ interface IInput {
children?: JSX.Element;
onPress: () => void;
inputStyle?: object;
disabled?: boolean | null;
disabled?: boolean;
placeholder?: string;
loading?: boolean;
innerInputStyle?: object;

View File

@ -36,7 +36,7 @@ interface IMultiSelect {
onClose?: () => void;
inputStyle?: TextStyle;
value?: any[];
disabled?: boolean | null;
disabled?: boolean;
innerInputStyle?: object;
}

View File

@ -1,4 +1,4 @@
import React from 'react';
import React, { ReactElement } from 'react';
import { Text, TextStyle, View, ViewStyle } from 'react-native';
import { TSupportedThemes } from '../../theme';