UNPKG

733 BTypeScriptView Raw
1import * as React from 'react';
2import Icons from '../../Icons';
3
4const WinterIcon = () => <Icons.Winter css={`width: 60px`} />;
5const AutumnIcon = () => <Icons.Autumn css={`width: 60px`} />;
6const SummerIcon = () => <Icons.Summer css={`width: 60px`} />;
7const SpringIcon = () => <Icons.Spring css={`width: 60px`} />
8
9export const SEASONS = [
10 {
11 id: 0,
12 name: 'Outono',
13 includeMonths: [2, 3, 4],
14 icon: <AutumnIcon />
15 },
16 {
17 id: 1,
18 name: 'Inverno',
19 includeMonths: [5, 6, 7],
20 icon: <WinterIcon />
21 },
22 {
23 id: 2,
24 name: 'Primaveira',
25 includeMonths: [8, 9, 10],
26 icon: <SpringIcon />
27 },
28 {
29 id: 3,
30 name: 'Verão',
31 includeMonths: [11, 0, 1],
32 icon: <SummerIcon />
33 },
34];
\No newline at end of file