@viktorvojtek/react-native-simple-components
Version:
Collection of essential UI components based on react-native components
35 lines (34 loc) • 860 B
TypeScript
declare const useColoredProps: (props: any) => ({
color: any;
borderColor?: undefined;
bgColor?: undefined;
backgroundColor?: undefined;
placeholderTextColor?: undefined;
} | {
borderColor: any;
color?: undefined;
bgColor?: undefined;
backgroundColor?: undefined;
placeholderTextColor?: undefined;
} | {
bgColor: any;
color?: undefined;
borderColor?: undefined;
backgroundColor?: undefined;
placeholderTextColor?: undefined;
} | {
backgroundColor: any;
color?: undefined;
borderColor?: undefined;
bgColor?: undefined;
placeholderTextColor?: undefined;
} | {
placeholderTextColor: any;
color?: undefined;
borderColor?: undefined;
bgColor?: undefined;
backgroundColor?: undefined;
} | {
[x: string]: string | undefined;
})[];
export default useColoredProps;