import { Pressable, View } from 'react-native'; import { useColors } from '../../hook'; import { usePaletteContext } from '../../theme'; import { SlideProps } from './types'; export const DefaultSlide = (props: SlideProps) => { if (props.modalType === 'simu-modal') { return ; } else { return ( ); } }; const Internal = (props: SlideProps) => { const { colors } = usePaletteContext(); const { getColor } = useColors({ bg3: { light: colors.neutral[8], dark: colors.neutral[3], }, }); return ( ); };