├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── nodejs.yml │ ├── npm-publish.yml │ └── publish-docs.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── doczrc.js ├── package.json ├── src │ ├── Gallery.mdx │ ├── helpers.js │ └── index.mdx └── yarn.lock ├── index.d.ts ├── package.json └── src ├── .eslintrc ├── countries.js ├── index.js ├── index.test.js ├── languages.js └── setupTests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | .snapshots/ 5 | *.min.js 6 | coverage/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .docz 2 | node_modules -------------------------------------------------------------------------------- /docs/doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/docs/doczrc.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/Gallery.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/docs/src/Gallery.mdx -------------------------------------------------------------------------------- /docs/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/docs/src/helpers.js -------------------------------------------------------------------------------- /docs/src/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/docs/src/index.mdx -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/package.json -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/src/countries.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/on-the-edge-cloud/react-circle-flags/HEAD/src/languages.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect' 2 | --------------------------------------------------------------------------------