React Native SVG-设置SVG宽度和高度会导致图标被切除
我有一个SVG组件,并且我尝试传递width和height属性,以便根据显示将所有图标缩放到相同大小。
import React from "react";
import Svg, { G, Path } from "react-native-svg";
const GearIcon = props => {
const {color = '#2672C9', height = 46, width = 46} = props;
return (
<Svg width={height} ...