import React from "react"; import type { Ionicon as Ionicon } from "./types"; import Ionicons from "@expo/vector-icons/Ionicons"; const IoniconImpl: React.FC = (props: Ionicon) => { const { iconProps } = props; // @ts-ignore return ; }; export default IoniconImpl;