import React from 'react'; import { View, StyleSheet } from 'react-native'; import Svg, { Path } from 'react-native-svg'; export default DiscountView = ({visible=false}) => { if (visible) { return (<> ); } else { return <>; } }; const styles = StyleSheet.create({ cardDiscount: { top: 0, left: 0, right: 0, bottom: 0, zIndex: 2, borderWidth: 3, borderRadius: 10, position: 'absolute', borderColor: colorAccent, borderStyle: 'solid' } })