Skip to content

Commit 5b58af7

Browse files
committed
German flag
1 parent 4d49178 commit 5b58af7

9 files changed

+68
-152
lines changed

.idea/workspace.xml

+49-135
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE-MIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016 Aleksandar Chalakov, Code Foundries
1+
Copyright (c) 2019 Eray Kiziltas, VisionF Co.
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ Library with country flag icons for [Material-UI](http://www.material-ui.com/#/)
55
## Installation
66

77
```shell
8-
npm install material-ui-flags --save
8+
npm install material-ui-flags
9+
10+
yarn add material-ui-flags
911
```
1012

1113
## Versions
@@ -20,9 +22,9 @@ import React from 'react';
2022
import IconButton from '@material-ui/core/IconButton';
2123

2224
import {
23-
Icon_Flag_TR,
24-
Icon_Flag_DE,
25-
Icon_Flag_US
25+
IconFlagTR,
26+
IconFlagDE,
27+
IconFlagUS
2628
} from 'material-ui-flags';
2729

2830
class MyComponent extends React.Component
@@ -31,9 +33,9 @@ class MyComponent extends React.Component
3133
{
3234
return(
3335
<div>
34-
<IconButton><Icon_Flag_TR /></IconButton>
35-
<IconButton><Icon_Flag_DE /></IconButton>
36-
<IconButton><Icon_Flag_US /></IconButton>
36+
<IconButton><IconFlagTR /></IconButton>
37+
<IconButton><IconFlagDE /></IconButton>
38+
<IconButton><IconFlagUS /></IconButton>
3739
</div>
3840
);
3941
}

lib/Icon_Flag_BG.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Icon_Flag_DE.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Icon_Flag_FR.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Icon_Flag_US.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "material-ui-flags",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "Flag icons for Material-UI",
55
"main": "lib/index.js",
66
"standalone": "Flags",
77
"repository": {
88
"type": "git",
9-
"url": "git://github.com/codefoundries/material-ui-flags.git"
9+
"url": "https://github.com/ekiziltas/material-ui-flags.git"
1010
},
1111
"keywords": [
1212
"material-ui",
@@ -22,11 +22,11 @@
2222
"licenses": [
2323
{
2424
"type": "MIT",
25-
"url": "https://github.com/codefoundries/material-ui-country-flags/blob/master/LICENSE-MIT"
25+
"url": "https://github.com/ekiziltas/material-ui-flags/blob/master/LICENSE-MIT"
2626
}
2727
],
2828
"bugs": {
29-
"url": "https://github.com/codefoundries/material-ui-flags/issues"
29+
"url": "https://github.com/ekiziltas/material-ui-flags/issues"
3030
},
3131
"dependencies": {},
3232
"peerDependencies": {},

0 commit comments

Comments
 (0)