import React from 'react'; import { View } from 'react-native'; import { Utils } from 'tuya-panel-kit'; const { convertX: cx } = Utils.RatioUtils; interface IArrow { isRight?: boolean; color?: string; } interface IArrowGroup { flip?: boolean; color?: string; } const Arrow: React.FC = ({ isRight, color }) => ( ); Arrow.defaultProps = { isRight: false, }; const ArrowGroup: React.FC = ({ flip, color }) => { return ( ); }; export default ArrowGroup;