参考链接:
https://www.npmjs.com/package/react-native-vector-icons#windows-via-react-native-windows
https://oblador.github.io/react-native-vector-icons/
import { Text, View } from 'react-native'
import Icon from 'react-native-vector-icons/AntDesign'
export default function MyIcon(props) {
let { name, className, title } = props
return (
<View>
<Text>{name}2</Text>
<Icon name="pluscircle" size={30} color="red" />
</View>
)
}