react-icons/md#MdCalendarToday TypeScript Examples
The following examples show how to use
react-icons/md#MdCalendarToday.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: statistics.tsx From frontend with Apache License 2.0 | 4 votes |
Statistics = ({ stats }: { stats: Statistics }): JSX.Element => {
const { t } = useTranslation()
let country_data: { country: string; value: number }[] = []
if (stats.countries) {
for (const [key, value] of Object.entries(stats.countries)) {
country_data.push({ country: key, value: value })
}
}
let downloads_labels: string[] = []
let downloads_data: number[] = []
if (stats.downloads_per_day) {
for (const [key, value] of Object.entries(stats.downloads_per_day)) {
downloads_labels.push(key)
downloads_data.push(value)
}
}
// Remove current day
downloads_labels.pop()
downloads_data.pop()
const data = chartStyle(downloads_labels, downloads_data, t('downloads'))
const options = chartOptions(i18n.language)
return (
<Main>
<NextSeo title={t('statistics')} description={t('flathub-statistics')} />
<div className='main-container'>
<h1>{t('statistics')}</h1>
<div className={styles.stats}>
<ListBox
items={[
{
icon: <MdCloudDownload />,
header: t('count-downloads'),
content: {
type: 'text',
text: stats.downloads?.toLocaleString(),
},
},
]}
/>
<ListBox
items={[
{
icon: <MdFormatListNumbered />,
header: t('count-applications'),
content: {
type: 'text',
text: stats.number_of_apps?.toLocaleString(),
},
},
]}
/>
<ListBox
items={[
{
icon: <MdCalendarToday />,
header: t('since'),
content: {
type: 'text',
text: new Date(2018, 3, 29).toLocaleDateString(i18n.language.substring(0, 2)),
},
},
]}
/>
</div>
<div className={styles.downloadStats}>{ }</div>
<h3>{t('downloads-per-country')}</h3>
<div className={styles.map}>
<WorldMap
color='var(--color-primary)'
backgroundColor='var(--bg-color-secondary)'
borderColor='var(--text-primary)'
valueSuffix='downloads'
size='responsive'
data={country_data}
/>
</div>
<h3>{t('downloads-over-time')}</h3>
<div className={styles.downloadsOverTime}>
<Line data={data} options={options} />
</div>
</div>
</Main>
)
}