import React from 'react'; const EnternalLinkIcon: React.FC<{ size?: number; stroke?: string }> = ({ size = 24, stroke = '#9AC9E3' }) => { return ( ); }; export default EnternalLinkIcon;