Customize Theme
import React from 'react';
import WeatherWidget from '@eggtronic/react-weather-widget';
function CustomTheme() {
const key = 'xxx';
const theme = {
color: ['#b92b27', '#1565C0'],
width: '500px',
height: '650px',
mainFontSize: '24px',
subFontSize: '14px',
mainFontColor: '#fff',
subFontColor: '#fff',
hrColor: '#fff',
lineChartPadding: [45, 30],
lineChartLabelPadding: [-10, -10],
lineChartColor: '#fff',
lineChartLabelColor: '#fff',
lineChartLabelSize: 1,
lineChartHeight: '120px'
}
return (
<WeatherWidget
apiKey={key}
theme={theme}
/>
);
}