import React from 'react'; import { Ionicons } from '@expo/vector-icons'; interface IconComponentProps { name: string; size: number; color: string; } const IconComponent: React.FC = ({ name, size, color }) => { return ; }; export default IconComponent;