import React from "react"; import Icon, { IconOptions } from "./Icon"; import View from "./View"; export default function TabBarIcon({ name, color, }: { name: IconOptions; color: string; }) { return ( ); }