Página de pruebas 3

From Sinfronteras
Revision as of 21:36, 10 December 2019 by Adelo Vieira (talk | contribs) (Replaced content with "<syntaxhighlight lang="ts"> import React from 'react'; const WeatherIcon = ({icon, className, ...props}) => ( <i {...props} className={`wi wi-owm-${icon} ${className ||...")
Jump to: navigation, search
import React from 'react';

const WeatherIcon = ({icon, className, ...props}) => (
  <i {...props} className={`wi wi-owm-${icon} ${className || ''}`} />
);

export default WeatherIcon;