import React from 'react';
import type { TextStyle, ViewStyle } from 'react-native';
import { StyleSheet, Text, View } from 'react-native';
import { COLORS, FONT_SIZE, PADDING } from '../../constants';
import { useNoOptions } from './no-options.hooks';
export const NoOptions = () => {
const {
noOptionsText,
noOptionsProps,
noOptionsTextProps,
textCustomStyles,
containerCustomStyles,
} = useNoOptions();
return (
{noOptionsText}
);
};
type Styles = {
option: ViewStyle;
text: TextStyle;
};
export const styles = StyleSheet.create({
option: {
padding: PADDING,
},
text: {
fontSize: FONT_SIZE,
color: COLORS.BLACK,
textAlign: 'left',
},
});