gitextract_79rtgsnn/ ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__/ │ ├── __mocks__/ │ │ └── styleMock.js │ ├── __snapshots__/ │ │ ├── checkbox-svg-map.test.js.snap │ │ ├── radio-svg-map.test.js.snap │ │ └── svg-map.test.js.snap │ ├── checkbox-svg-map.test.js │ ├── fake-map.js │ ├── radio-svg-map.test.js │ └── svg-map.test.js ├── docs/ │ ├── index.html │ └── index.js ├── examples/ │ └── src/ │ ├── components/ │ │ ├── checkbox-map.jsx │ │ ├── examples-app.jsx │ │ ├── examples-app.scss │ │ ├── link-map.jsx │ │ ├── radio-map.jsx │ │ └── tooltip-heat-map.jsx │ ├── index.html │ ├── index.jsx │ └── utils.js ├── jest-setup.js ├── jest.config.js ├── package.json ├── src/ │ ├── checkbox-svg-map.jsx │ ├── index.js │ ├── radio-svg-map.jsx │ ├── svg-map.jsx │ └── svg-map.scss ├── webpack.config.js └── webpack.examples.config.js