import React from 'react'; import { Image, StyleProp, StyleSheet, View, ViewStyle } from 'react-native'; import type { Theme } from '../../types'; import { withTheme } from '../../core/theming'; //import { ChevronIcon } from '../..'; type Props = { disabled?: boolean; segments?: number; style?: StyleProp; theme: Theme; }; /*const CloseIcon = ({ disabled = false, segments = 4, style, theme, ...rest }: Props) => { return ( ); }; const styles = StyleSheet.create({ wrapper: { alignItems: 'center', flexDirection: 'row', }, });*/ const CloseIcon = ({ disabled = false, segments = 4, style, theme, ...rest }: Props) => { return ( ); }; const styles = StyleSheet.create({ image10x11: { width: 10, height: 11, }, image16x14: { width: 16, height: 14, }, image18x16: { width: 18, height: 16, }, }); export default withTheme(CloseIcon);