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; children?: JSX.Element;
onPress: () => void; onPress: () => void;
inputStyle?: object; inputStyle?: object;
disabled?: boolean | null; disabled?: boolean;
placeholder?: string; placeholder?: string;
loading?: boolean; loading?: boolean;
innerInputStyle?: object; innerInputStyle?: object;

View File

@ -36,7 +36,7 @@ interface IMultiSelect {
onClose?: () => void; onClose?: () => void;
inputStyle?: TextStyle; inputStyle?: TextStyle;
value?: any[]; value?: any[];
disabled?: boolean | null; disabled?: boolean;
innerInputStyle?: object; 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 { Text, TextStyle, View, ViewStyle } from 'react-native';
import { TSupportedThemes } from '../../theme'; import { TSupportedThemes } from '../../theme';