├── .babelrc ├── .circleci └── config.yml ├── .eslintrc ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── dist └── react-world-flags.js ├── docs ├── build.js ├── build.js.LICENSE.txt ├── index.html ├── index.js └── webpack.config.js ├── package.json ├── scripts └── genFlagExports.js ├── src ├── Flag.js ├── Flag.test.js ├── __mocks__ │ └── fileMock.js ├── __snapshots__ │ └── Flag.test.js.snap ├── country.js ├── country.test.js ├── flags.js ├── flags.test.js └── svgs │ ├── ad.svg │ ├── ae.svg │ ├── af.svg │ ├── ag.svg │ ├── ai.svg │ ├── al.svg │ ├── am.svg │ ├── an.svg │ ├── ao.svg │ ├── aq.svg │ ├── ar.svg │ ├── as.svg │ ├── at.svg │ ├── au.svg │ ├── aw.svg │ ├── ax.svg │ ├── az.svg │ ├── ba.svg │ ├── bb.svg │ ├── bd.svg │ ├── be.svg │ ├── bf.svg │ ├── bg.svg │ ├── bh.svg │ ├── bi.svg │ ├── bj.svg │ ├── bl.svg │ ├── bm.svg │ ├── bn.svg │ ├── bo.svg │ ├── bq.svg │ ├── br.svg │ ├── bs.svg │ ├── bt.svg │ ├── bv.svg │ ├── bw.svg │ ├── by.svg │ ├── bz.svg │ ├── ca.svg │ ├── cc.svg │ ├── cd.svg │ ├── cf.svg │ ├── cg.svg │ ├── ch.svg │ ├── ci.svg │ ├── ck.svg │ ├── cl.svg │ ├── cm.svg │ ├── cn.svg │ ├── co.svg │ ├── cr.svg │ ├── cu.svg │ ├── cv.svg │ ├── cw.svg │ ├── cx.svg │ ├── cy.svg │ ├── cz.svg │ ├── de.svg │ ├── dj.svg │ ├── dk.svg │ ├── dm.svg │ ├── do.svg │ ├── dz.svg │ ├── ec.svg │ ├── ee.svg │ ├── eg.svg │ ├── eh.svg │ ├── er.svg │ ├── es.svg │ ├── et.svg │ ├── eu.svg │ ├── fi.svg │ ├── fj.svg │ ├── fk.svg │ ├── fm.svg │ ├── fo.svg │ ├── fr.svg │ ├── ga.svg │ ├── gb-eng.svg │ ├── gb-nir.svg │ ├── gb-sct.svg │ ├── gb-wls.svg │ ├── gb.svg │ ├── gd.svg │ ├── ge.svg │ ├── gf.svg │ ├── gg.svg │ ├── gh.svg │ ├── gi.svg │ ├── gl.svg │ ├── gm.svg │ ├── gn.svg │ ├── gp.svg │ ├── gq.svg │ ├── gr.svg │ ├── gs.svg │ ├── gt.svg │ ├── gu.svg │ ├── gw.svg │ ├── gy.svg │ ├── hk.svg │ ├── hm.svg │ ├── hn.svg │ ├── hr.svg │ ├── ht.svg │ ├── hu.svg │ ├── id.svg │ ├── ie.svg │ ├── il.svg │ ├── im.svg │ ├── in.svg │ ├── io.svg │ ├── iq.svg │ ├── ir.svg │ ├── is.svg │ ├── it.svg │ ├── je.svg │ ├── jm.svg │ ├── jo.svg │ ├── jp.svg │ ├── ke.svg │ ├── kg.svg │ ├── kh.svg │ ├── ki.svg │ ├── km.svg │ ├── kn.svg │ ├── kp.svg │ ├── kr.svg │ ├── kw.svg │ ├── ky.svg │ ├── kz.svg │ ├── la.svg │ ├── lb.svg │ ├── lc.svg │ ├── li.svg │ ├── lk.svg │ ├── lr.svg │ ├── ls.svg │ ├── lt.svg │ ├── lu.svg │ ├── lv.svg │ ├── ly.svg │ ├── ma.svg │ ├── mc.svg │ ├── md.svg │ ├── me.svg │ ├── mf.svg │ ├── mg.svg │ ├── mh.svg │ ├── mk.svg │ ├── ml.svg │ ├── mm.svg │ ├── mn.svg │ ├── mo.svg │ ├── mp.svg │ ├── mq.svg │ ├── mr.svg │ ├── ms.svg │ ├── mt.svg │ ├── mu.svg │ ├── mv.svg │ ├── mw.svg │ ├── mx.svg │ ├── my.svg │ ├── mz.svg │ ├── na.svg │ ├── nc.svg │ ├── ne.svg │ ├── nf.svg │ ├── ng.svg │ ├── ni.svg │ ├── nl.svg │ ├── no.svg │ ├── np.svg │ ├── nr.svg │ ├── nu.svg │ ├── nz.svg │ ├── om.svg │ ├── pa.svg │ ├── pe.svg │ ├── pf.svg │ ├── pg.svg │ ├── ph.svg │ ├── pk.svg │ ├── pl.svg │ ├── pm.svg │ ├── pn.svg │ ├── pr.svg │ ├── ps.svg │ ├── pt.svg │ ├── pw.svg │ ├── py.svg │ ├── qa.svg │ ├── re.svg │ ├── ro.svg │ ├── rs.svg │ ├── ru.svg │ ├── rw.svg │ ├── sa.svg │ ├── sb.svg │ ├── sc.svg │ ├── sd.svg │ ├── se.svg │ ├── sg.svg │ ├── sh.svg │ ├── si.svg │ ├── sj.svg │ ├── sk.svg │ ├── sl.svg │ ├── sm.svg │ ├── sn.svg │ ├── so.svg │ ├── sr.svg │ ├── ss.svg │ ├── st.svg │ ├── sv.svg │ ├── sx.svg │ ├── sy.svg │ ├── sz.svg │ ├── tc.svg │ ├── td.svg │ ├── tf.svg │ ├── tg.svg │ ├── th.svg │ ├── tj.svg │ ├── tk.svg │ ├── tl.svg │ ├── tm.svg │ ├── tn.svg │ ├── to.svg │ ├── tr.svg │ ├── tt.svg │ ├── tv.svg │ ├── tw.svg │ ├── tz.svg │ ├── ua.svg │ ├── ug.svg │ ├── um.svg │ ├── us.svg │ ├── uy.svg │ ├── uz.svg │ ├── va.svg │ ├── vc.svg │ ├── ve.svg │ ├── vg.svg │ ├── vi.svg │ ├── vn.svg │ ├── vu.svg │ ├── wf.svg │ ├── ws.svg │ ├── xk.svg │ ├── ye.svg │ ├── yt.svg │ ├── za.svg │ ├── zm.svg │ └── zw.svg └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | src/svgs/*.svg-e* 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/README.md -------------------------------------------------------------------------------- /dist/react-world-flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/dist/react-world-flags.js -------------------------------------------------------------------------------- /docs/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/docs/build.js -------------------------------------------------------------------------------- /docs/build.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/docs/build.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/docs/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/package.json -------------------------------------------------------------------------------- /scripts/genFlagExports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/scripts/genFlagExports.js -------------------------------------------------------------------------------- /src/Flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/Flag.js -------------------------------------------------------------------------------- /src/Flag.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/Flag.test.js -------------------------------------------------------------------------------- /src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub' 2 | -------------------------------------------------------------------------------- /src/__snapshots__/Flag.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/__snapshots__/Flag.test.js.snap -------------------------------------------------------------------------------- /src/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/country.js -------------------------------------------------------------------------------- /src/country.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/country.test.js -------------------------------------------------------------------------------- /src/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/flags.js -------------------------------------------------------------------------------- /src/flags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/flags.test.js -------------------------------------------------------------------------------- /src/svgs/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ad.svg -------------------------------------------------------------------------------- /src/svgs/ae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ae.svg -------------------------------------------------------------------------------- /src/svgs/af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/af.svg -------------------------------------------------------------------------------- /src/svgs/ag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ag.svg -------------------------------------------------------------------------------- /src/svgs/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ai.svg -------------------------------------------------------------------------------- /src/svgs/al.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/al.svg -------------------------------------------------------------------------------- /src/svgs/am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/am.svg -------------------------------------------------------------------------------- /src/svgs/an.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/an.svg -------------------------------------------------------------------------------- /src/svgs/ao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ao.svg -------------------------------------------------------------------------------- /src/svgs/aq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/aq.svg -------------------------------------------------------------------------------- /src/svgs/ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ar.svg -------------------------------------------------------------------------------- /src/svgs/as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/as.svg -------------------------------------------------------------------------------- /src/svgs/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/at.svg -------------------------------------------------------------------------------- /src/svgs/au.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/au.svg -------------------------------------------------------------------------------- /src/svgs/aw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/aw.svg -------------------------------------------------------------------------------- /src/svgs/ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ax.svg -------------------------------------------------------------------------------- /src/svgs/az.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/az.svg -------------------------------------------------------------------------------- /src/svgs/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ba.svg -------------------------------------------------------------------------------- /src/svgs/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bb.svg -------------------------------------------------------------------------------- /src/svgs/bd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bd.svg -------------------------------------------------------------------------------- /src/svgs/be.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/be.svg -------------------------------------------------------------------------------- /src/svgs/bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bf.svg -------------------------------------------------------------------------------- /src/svgs/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bg.svg -------------------------------------------------------------------------------- /src/svgs/bh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bh.svg -------------------------------------------------------------------------------- /src/svgs/bi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bi.svg -------------------------------------------------------------------------------- /src/svgs/bj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bj.svg -------------------------------------------------------------------------------- /src/svgs/bl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bl.svg -------------------------------------------------------------------------------- /src/svgs/bm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bm.svg -------------------------------------------------------------------------------- /src/svgs/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bn.svg -------------------------------------------------------------------------------- /src/svgs/bo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bo.svg -------------------------------------------------------------------------------- /src/svgs/bq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bq.svg -------------------------------------------------------------------------------- /src/svgs/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/br.svg -------------------------------------------------------------------------------- /src/svgs/bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bs.svg -------------------------------------------------------------------------------- /src/svgs/bt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bt.svg -------------------------------------------------------------------------------- /src/svgs/bv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bv.svg -------------------------------------------------------------------------------- /src/svgs/bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bw.svg -------------------------------------------------------------------------------- /src/svgs/by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/by.svg -------------------------------------------------------------------------------- /src/svgs/bz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/bz.svg -------------------------------------------------------------------------------- /src/svgs/ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ca.svg -------------------------------------------------------------------------------- /src/svgs/cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cc.svg -------------------------------------------------------------------------------- /src/svgs/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cd.svg -------------------------------------------------------------------------------- /src/svgs/cf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cf.svg -------------------------------------------------------------------------------- /src/svgs/cg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cg.svg -------------------------------------------------------------------------------- /src/svgs/ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ch.svg -------------------------------------------------------------------------------- /src/svgs/ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ci.svg -------------------------------------------------------------------------------- /src/svgs/ck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ck.svg -------------------------------------------------------------------------------- /src/svgs/cl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cl.svg -------------------------------------------------------------------------------- /src/svgs/cm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cm.svg -------------------------------------------------------------------------------- /src/svgs/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cn.svg -------------------------------------------------------------------------------- /src/svgs/co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/co.svg -------------------------------------------------------------------------------- /src/svgs/cr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cr.svg -------------------------------------------------------------------------------- /src/svgs/cu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cu.svg -------------------------------------------------------------------------------- /src/svgs/cv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cv.svg -------------------------------------------------------------------------------- /src/svgs/cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cw.svg -------------------------------------------------------------------------------- /src/svgs/cx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cx.svg -------------------------------------------------------------------------------- /src/svgs/cy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cy.svg -------------------------------------------------------------------------------- /src/svgs/cz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/cz.svg -------------------------------------------------------------------------------- /src/svgs/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/de.svg -------------------------------------------------------------------------------- /src/svgs/dj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/dj.svg -------------------------------------------------------------------------------- /src/svgs/dk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/dk.svg -------------------------------------------------------------------------------- /src/svgs/dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/dm.svg -------------------------------------------------------------------------------- /src/svgs/do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/do.svg -------------------------------------------------------------------------------- /src/svgs/dz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/dz.svg -------------------------------------------------------------------------------- /src/svgs/ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ec.svg -------------------------------------------------------------------------------- /src/svgs/ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ee.svg -------------------------------------------------------------------------------- /src/svgs/eg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/eg.svg -------------------------------------------------------------------------------- /src/svgs/eh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/eh.svg -------------------------------------------------------------------------------- /src/svgs/er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/er.svg -------------------------------------------------------------------------------- /src/svgs/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/es.svg -------------------------------------------------------------------------------- /src/svgs/et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/et.svg -------------------------------------------------------------------------------- /src/svgs/eu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/eu.svg -------------------------------------------------------------------------------- /src/svgs/fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/fi.svg -------------------------------------------------------------------------------- /src/svgs/fj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/fj.svg -------------------------------------------------------------------------------- /src/svgs/fk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/fk.svg -------------------------------------------------------------------------------- /src/svgs/fm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/fm.svg -------------------------------------------------------------------------------- /src/svgs/fo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/fo.svg -------------------------------------------------------------------------------- /src/svgs/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/fr.svg -------------------------------------------------------------------------------- /src/svgs/ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ga.svg -------------------------------------------------------------------------------- /src/svgs/gb-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gb-eng.svg -------------------------------------------------------------------------------- /src/svgs/gb-nir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gb-nir.svg -------------------------------------------------------------------------------- /src/svgs/gb-sct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gb-sct.svg -------------------------------------------------------------------------------- /src/svgs/gb-wls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gb-wls.svg -------------------------------------------------------------------------------- /src/svgs/gb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gb.svg -------------------------------------------------------------------------------- /src/svgs/gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gd.svg -------------------------------------------------------------------------------- /src/svgs/ge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ge.svg -------------------------------------------------------------------------------- /src/svgs/gf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gf.svg -------------------------------------------------------------------------------- /src/svgs/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gg.svg -------------------------------------------------------------------------------- /src/svgs/gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gh.svg -------------------------------------------------------------------------------- /src/svgs/gi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gi.svg -------------------------------------------------------------------------------- /src/svgs/gl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gl.svg -------------------------------------------------------------------------------- /src/svgs/gm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gm.svg -------------------------------------------------------------------------------- /src/svgs/gn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gn.svg -------------------------------------------------------------------------------- /src/svgs/gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gp.svg -------------------------------------------------------------------------------- /src/svgs/gq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gq.svg -------------------------------------------------------------------------------- /src/svgs/gr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gr.svg -------------------------------------------------------------------------------- /src/svgs/gs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gs.svg -------------------------------------------------------------------------------- /src/svgs/gt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gt.svg -------------------------------------------------------------------------------- /src/svgs/gu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gu.svg -------------------------------------------------------------------------------- /src/svgs/gw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gw.svg -------------------------------------------------------------------------------- /src/svgs/gy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/gy.svg -------------------------------------------------------------------------------- /src/svgs/hk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/hk.svg -------------------------------------------------------------------------------- /src/svgs/hm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/hm.svg -------------------------------------------------------------------------------- /src/svgs/hn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/hn.svg -------------------------------------------------------------------------------- /src/svgs/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/hr.svg -------------------------------------------------------------------------------- /src/svgs/ht.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ht.svg -------------------------------------------------------------------------------- /src/svgs/hu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/hu.svg -------------------------------------------------------------------------------- /src/svgs/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/id.svg -------------------------------------------------------------------------------- /src/svgs/ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ie.svg -------------------------------------------------------------------------------- /src/svgs/il.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/il.svg -------------------------------------------------------------------------------- /src/svgs/im.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/im.svg -------------------------------------------------------------------------------- /src/svgs/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/in.svg -------------------------------------------------------------------------------- /src/svgs/io.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/io.svg -------------------------------------------------------------------------------- /src/svgs/iq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/iq.svg -------------------------------------------------------------------------------- /src/svgs/ir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ir.svg -------------------------------------------------------------------------------- /src/svgs/is.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/is.svg -------------------------------------------------------------------------------- /src/svgs/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/it.svg -------------------------------------------------------------------------------- /src/svgs/je.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/je.svg -------------------------------------------------------------------------------- /src/svgs/jm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/jm.svg -------------------------------------------------------------------------------- /src/svgs/jo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/jo.svg -------------------------------------------------------------------------------- /src/svgs/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/jp.svg -------------------------------------------------------------------------------- /src/svgs/ke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ke.svg -------------------------------------------------------------------------------- /src/svgs/kg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kg.svg -------------------------------------------------------------------------------- /src/svgs/kh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kh.svg -------------------------------------------------------------------------------- /src/svgs/ki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ki.svg -------------------------------------------------------------------------------- /src/svgs/km.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/km.svg -------------------------------------------------------------------------------- /src/svgs/kn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kn.svg -------------------------------------------------------------------------------- /src/svgs/kp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kp.svg -------------------------------------------------------------------------------- /src/svgs/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kr.svg -------------------------------------------------------------------------------- /src/svgs/kw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kw.svg -------------------------------------------------------------------------------- /src/svgs/ky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ky.svg -------------------------------------------------------------------------------- /src/svgs/kz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/kz.svg -------------------------------------------------------------------------------- /src/svgs/la.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/la.svg -------------------------------------------------------------------------------- /src/svgs/lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lb.svg -------------------------------------------------------------------------------- /src/svgs/lc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lc.svg -------------------------------------------------------------------------------- /src/svgs/li.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/li.svg -------------------------------------------------------------------------------- /src/svgs/lk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lk.svg -------------------------------------------------------------------------------- /src/svgs/lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lr.svg -------------------------------------------------------------------------------- /src/svgs/ls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ls.svg -------------------------------------------------------------------------------- /src/svgs/lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lt.svg -------------------------------------------------------------------------------- /src/svgs/lu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lu.svg -------------------------------------------------------------------------------- /src/svgs/lv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/lv.svg -------------------------------------------------------------------------------- /src/svgs/ly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ly.svg -------------------------------------------------------------------------------- /src/svgs/ma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ma.svg -------------------------------------------------------------------------------- /src/svgs/mc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mc.svg -------------------------------------------------------------------------------- /src/svgs/md.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/md.svg -------------------------------------------------------------------------------- /src/svgs/me.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/me.svg -------------------------------------------------------------------------------- /src/svgs/mf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mf.svg -------------------------------------------------------------------------------- /src/svgs/mg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mg.svg -------------------------------------------------------------------------------- /src/svgs/mh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mh.svg -------------------------------------------------------------------------------- /src/svgs/mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mk.svg -------------------------------------------------------------------------------- /src/svgs/ml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ml.svg -------------------------------------------------------------------------------- /src/svgs/mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mm.svg -------------------------------------------------------------------------------- /src/svgs/mn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mn.svg -------------------------------------------------------------------------------- /src/svgs/mo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mo.svg -------------------------------------------------------------------------------- /src/svgs/mp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mp.svg -------------------------------------------------------------------------------- /src/svgs/mq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mq.svg -------------------------------------------------------------------------------- /src/svgs/mr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mr.svg -------------------------------------------------------------------------------- /src/svgs/ms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ms.svg -------------------------------------------------------------------------------- /src/svgs/mt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mt.svg -------------------------------------------------------------------------------- /src/svgs/mu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mu.svg -------------------------------------------------------------------------------- /src/svgs/mv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mv.svg -------------------------------------------------------------------------------- /src/svgs/mw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mw.svg -------------------------------------------------------------------------------- /src/svgs/mx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mx.svg -------------------------------------------------------------------------------- /src/svgs/my.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/my.svg -------------------------------------------------------------------------------- /src/svgs/mz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/mz.svg -------------------------------------------------------------------------------- /src/svgs/na.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/na.svg -------------------------------------------------------------------------------- /src/svgs/nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/nc.svg -------------------------------------------------------------------------------- /src/svgs/ne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ne.svg -------------------------------------------------------------------------------- /src/svgs/nf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/nf.svg -------------------------------------------------------------------------------- /src/svgs/ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ng.svg -------------------------------------------------------------------------------- /src/svgs/ni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ni.svg -------------------------------------------------------------------------------- /src/svgs/nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/nl.svg -------------------------------------------------------------------------------- /src/svgs/no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/no.svg -------------------------------------------------------------------------------- /src/svgs/np.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/np.svg -------------------------------------------------------------------------------- /src/svgs/nr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/nr.svg -------------------------------------------------------------------------------- /src/svgs/nu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/nu.svg -------------------------------------------------------------------------------- /src/svgs/nz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/nz.svg -------------------------------------------------------------------------------- /src/svgs/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/om.svg -------------------------------------------------------------------------------- /src/svgs/pa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pa.svg -------------------------------------------------------------------------------- /src/svgs/pe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pe.svg -------------------------------------------------------------------------------- /src/svgs/pf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pf.svg -------------------------------------------------------------------------------- /src/svgs/pg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pg.svg -------------------------------------------------------------------------------- /src/svgs/ph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ph.svg -------------------------------------------------------------------------------- /src/svgs/pk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pk.svg -------------------------------------------------------------------------------- /src/svgs/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pl.svg -------------------------------------------------------------------------------- /src/svgs/pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pm.svg -------------------------------------------------------------------------------- /src/svgs/pn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pn.svg -------------------------------------------------------------------------------- /src/svgs/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pr.svg -------------------------------------------------------------------------------- /src/svgs/ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ps.svg -------------------------------------------------------------------------------- /src/svgs/pt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pt.svg -------------------------------------------------------------------------------- /src/svgs/pw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/pw.svg -------------------------------------------------------------------------------- /src/svgs/py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/py.svg -------------------------------------------------------------------------------- /src/svgs/qa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/qa.svg -------------------------------------------------------------------------------- /src/svgs/re.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/re.svg -------------------------------------------------------------------------------- /src/svgs/ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ro.svg -------------------------------------------------------------------------------- /src/svgs/rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/rs.svg -------------------------------------------------------------------------------- /src/svgs/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ru.svg -------------------------------------------------------------------------------- /src/svgs/rw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/rw.svg -------------------------------------------------------------------------------- /src/svgs/sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sa.svg -------------------------------------------------------------------------------- /src/svgs/sb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sb.svg -------------------------------------------------------------------------------- /src/svgs/sc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sc.svg -------------------------------------------------------------------------------- /src/svgs/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sd.svg -------------------------------------------------------------------------------- /src/svgs/se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/se.svg -------------------------------------------------------------------------------- /src/svgs/sg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sg.svg -------------------------------------------------------------------------------- /src/svgs/sh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sh.svg -------------------------------------------------------------------------------- /src/svgs/si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/si.svg -------------------------------------------------------------------------------- /src/svgs/sj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sj.svg -------------------------------------------------------------------------------- /src/svgs/sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sk.svg -------------------------------------------------------------------------------- /src/svgs/sl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sl.svg -------------------------------------------------------------------------------- /src/svgs/sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sm.svg -------------------------------------------------------------------------------- /src/svgs/sn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sn.svg -------------------------------------------------------------------------------- /src/svgs/so.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/so.svg -------------------------------------------------------------------------------- /src/svgs/sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sr.svg -------------------------------------------------------------------------------- /src/svgs/ss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ss.svg -------------------------------------------------------------------------------- /src/svgs/st.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/st.svg -------------------------------------------------------------------------------- /src/svgs/sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sv.svg -------------------------------------------------------------------------------- /src/svgs/sx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sx.svg -------------------------------------------------------------------------------- /src/svgs/sy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sy.svg -------------------------------------------------------------------------------- /src/svgs/sz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/sz.svg -------------------------------------------------------------------------------- /src/svgs/tc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tc.svg -------------------------------------------------------------------------------- /src/svgs/td.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/td.svg -------------------------------------------------------------------------------- /src/svgs/tf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tf.svg -------------------------------------------------------------------------------- /src/svgs/tg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tg.svg -------------------------------------------------------------------------------- /src/svgs/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/th.svg -------------------------------------------------------------------------------- /src/svgs/tj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tj.svg -------------------------------------------------------------------------------- /src/svgs/tk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tk.svg -------------------------------------------------------------------------------- /src/svgs/tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tl.svg -------------------------------------------------------------------------------- /src/svgs/tm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tm.svg -------------------------------------------------------------------------------- /src/svgs/tn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tn.svg -------------------------------------------------------------------------------- /src/svgs/to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/to.svg -------------------------------------------------------------------------------- /src/svgs/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tr.svg -------------------------------------------------------------------------------- /src/svgs/tt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tt.svg -------------------------------------------------------------------------------- /src/svgs/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tv.svg -------------------------------------------------------------------------------- /src/svgs/tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tw.svg -------------------------------------------------------------------------------- /src/svgs/tz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/tz.svg -------------------------------------------------------------------------------- /src/svgs/ua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ua.svg -------------------------------------------------------------------------------- /src/svgs/ug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ug.svg -------------------------------------------------------------------------------- /src/svgs/um.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/um.svg -------------------------------------------------------------------------------- /src/svgs/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/us.svg -------------------------------------------------------------------------------- /src/svgs/uy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/uy.svg -------------------------------------------------------------------------------- /src/svgs/uz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/uz.svg -------------------------------------------------------------------------------- /src/svgs/va.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/va.svg -------------------------------------------------------------------------------- /src/svgs/vc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/vc.svg -------------------------------------------------------------------------------- /src/svgs/ve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ve.svg -------------------------------------------------------------------------------- /src/svgs/vg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/vg.svg -------------------------------------------------------------------------------- /src/svgs/vi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/vi.svg -------------------------------------------------------------------------------- /src/svgs/vn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/vn.svg -------------------------------------------------------------------------------- /src/svgs/vu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/vu.svg -------------------------------------------------------------------------------- /src/svgs/wf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/wf.svg -------------------------------------------------------------------------------- /src/svgs/ws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ws.svg -------------------------------------------------------------------------------- /src/svgs/xk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/xk.svg -------------------------------------------------------------------------------- /src/svgs/ye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/ye.svg -------------------------------------------------------------------------------- /src/svgs/yt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/yt.svg -------------------------------------------------------------------------------- /src/svgs/za.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/za.svg -------------------------------------------------------------------------------- /src/svgs/zm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/zm.svg -------------------------------------------------------------------------------- /src/svgs/zw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/src/svgs/zw.svg -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smucode/react-world-flags/HEAD/webpack.config.js --------------------------------------------------------------------------------