import { View, StyleSheet } from 'react-native'; const Triangle = ({ width = 10, height = 20, color = 'black' }) => { return ( ); }; const styles = StyleSheet.create({ triangle: { width: 0, height: 0, transform: [{ rotate: '180deg' }], backgroundColor: 'transparent', borderStyle: 'solid', borderLeftColor: 'transparent', borderRightColor: 'transparent', }, }); export default Triangle;