zcreativelabs / react-simple-maps

Beautiful React SVG maps with d3-geo and topojson using a declarative api.
https://www.react-simple-maps.io/
MIT License
3.04k stars 424 forks source link

Remove onClick border #252

Closed wegory closed 3 years ago

wegory commented 3 years ago

Hello hello. This might be a dumb question but when I clicked into a Geography (in all of the examples from the documentation), a rectangle with a blue-white border containing the clicked Geography appears. How do I prevent that from being visible? :)

zimrick commented 3 years ago

If you want to remove that you can just set outline to none for the geography via the custom style prop.

<Geography
  style={{
    default: { outline: "none" },
    hover: { outline: "none" },
    pressed: { outline: "none" },
  }}
/>

Hope this helps Cheers

wegory commented 3 years ago

Ahhh got it! Cheers mate! :)