-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFlag.jsx
57 lines (48 loc) · 1.46 KB
/
Flag.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use strict';
var React = require('react');
var cx = require('react-classset');
require('./Flag.less');
var Flag = React.createClass({
propTypes: {
// country: React.propTypes.string.isRequired
},
render() {
var country = this.props.country;
var countryClass = cx({
'Flag': true,
GLOBAL: country === 'G',
"US": country === "US",
"CA": country === "CA",
"MX": country === "MX",
"PE": country === "PE",
"AR": country === "AR",
"CL": country === "CL",
"CO": country === "CO",
"CR": country === "CR",
"GT": country === "GT",
"TT": country === "TT",
"UK": country === "UK",
"FR": country === "FR",
"NL": country === "NL",
"SE": country === "SE",
"FI": country === "FI",
"ES": country === "ES",
"IT": country === "IT",
"HU": country === "HU",
"PL": country === "PL",
"PT": country === "PT",
"GR": country === "GR",
"JP": country === "JP",
"TW": country === "TW",
"KR": country === "KR",
"TH": country === "TH",
"AU": country === "AU",
"NZ": country === "NZ",
"DE": country === "DE"
});
return (
<i className={countryClass}></i>
);
}
});
module.exports = Flag;