diff --git a/explorer/src/icons/NymVpn.tsx b/explorer/src/icons/NymVpn.tsx index 04e54c851f..788b78a4f9 100644 --- a/explorer/src/icons/NymVpn.tsx +++ b/explorer/src/icons/NymVpn.tsx @@ -4,54 +4,52 @@ interface DiscordIconProps { size?: { width: number; height: number }; } -export const NymVpnIcon: FCWithChildren = ({ size }) => { - return ( - - - - - - - - - - - - ); -}; +export const NymVpnIcon: FCWithChildren = ({ size }) => ( + + + + + + + + + + + +); NymVpnIcon.defaultProps = { size: { width: 80, height: 12 },