React Native - MaterialCommunityIcons 图标名称的打字稿定义

Pao*_*ent 11 react-native expo react-native-vector-icons

我正在尝试找出 MaterialCommunityIcons 图标名称的类型定义,因为我打算将其用于道具。

Pao*_*ent 24

React.ComponentProps<typeof MaterialCommunityIcons>['name']
Run Code Online (Sandbox Code Playgroud)

  • 另一个解决方案是:`let iconName: keyof typeof MaterialCommunityIcons.glyphMap;` (3认同)