import React from 'react'; import Svg, { Path } from 'react-native-svg'; const TrapezoidIcon = ({ color = "#006be5", size = 20 }) => { const parentWidth = 131; // 父容器的宽度 const parentHeight = 50; // 父容器的高度 return ( ); }; export default TrapezoidIcon;