frontend: add more icons + note

Pedro Lucas Porcellis porcellis@eletrotupi.com 1 month ago 220d1611f18fcb1e6df7439a2c5cd8cbd19a8054
Parents: 286fe93
1 file(s) changed
  • frontend/components/ui/icon-symbol.tsx +7 -0
frontend/components/ui/icon-symbol.tsx
@@ -12,12 +12,19 @@ /**
12 12 * Add your SF Symbols to Material Icons mappings here.
13 13 * - see Material Icons in the [Icons Directory](https://icons.expo.fyi).
14 14 * - see SF Symbols in the [SF Symbols](https://developer.apple.com/sf-symbols/) app.
15 + *
16 + * TODO: We might get rid of this completely and just wrap a <MeterialIcons>
17 + * since we won't have iOS stuff
15 18 */
16 19 const MAPPING = {
17 20 'house.fill': 'home',
21 + 'add-circle': 'add-circle',
22 + 'history': 'history',
23 + 'lightbulb-outline': 'lightbulb-outline',
18 24 'paperplane.fill': 'send',
19 25 'chevron.left.forwardslash.chevron.right': 'code',
20 26 'chevron.right': 'chevron-right',
27 + 'bolt': 'bolt',
21 28 'settings.fill': 'settings'
22 29 } as IconMapping;
23 30