import { NFAIconStyles as NS } from './nfa-icon.styles'; type NFAIconProps = { image: string; color: string; }; export const NFAIcon: React.FC = ({ image, color, }: NFAIconProps) => { return ( ); };