Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

IconSymbol.tsx 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // This file is a fallback for using MaterialIcons on Android and web.
  2. import MaterialIcons from '@expo/vector-icons/MaterialIcons';
  3. import { SymbolWeight } from 'expo-symbols';
  4. import React from 'react';
  5. import { OpaqueColorValue, StyleProp, ViewStyle } from 'react-native';
  6. // Add your SFSymbol to MaterialIcons mappings here.
  7. const MAPPING = {
  8. // See MaterialIcons here: https://icons.expo.fyi
  9. // See SF Symbols in the SF Symbols app on Mac.
  10. 'house.fill': 'home',
  11. 'paperplane.fill': 'send',
  12. 'chevron.left.forwardslash.chevron.right': 'code',
  13. 'chevron.right': 'chevron-right',
  14. } as Partial<
  15. Record<
  16. import('expo-symbols').SymbolViewProps['name'],
  17. React.ComponentProps<typeof MaterialIcons>['name']
  18. >
  19. >;
  20. export type IconSymbolName = keyof typeof MAPPING;
  21. /**
  22. * An icon component that uses native SFSymbols on iOS, and MaterialIcons on Android and web. This ensures a consistent look across platforms, and optimal resource usage.
  23. *
  24. * Icon `name`s are based on SFSymbols and require manual mapping to MaterialIcons.
  25. */
  26. export function IconSymbol({
  27. name,
  28. size = 24,
  29. color,
  30. style,
  31. }: {
  32. name: IconSymbolName;
  33. size?: number;
  34. color: string | OpaqueColorValue;
  35. style?: StyleProp<ViewStyle>;
  36. weight?: SymbolWeight;
  37. }) {
  38. return <MaterialIcons color={color} size={size} name={MAPPING[name]} style={style} />;
  39. }