diff --git a/src/components/map/controls/GridSnappingToggle.js b/src/components/map/controls/GridSnappingToggle.js deleted file mode 100644 index b09232a..0000000 --- a/src/components/map/controls/GridSnappingToggle.js +++ /dev/null @@ -1,21 +0,0 @@ -import React from "react"; -import { IconButton } from "theme-ui"; - -import GridOnIcon from "../../../icons/GridOnIcon"; -import GridOffIcon from "../../../icons/GridOffIcon"; - -function GridSnappingToggle({ useGridSnapping, onGridSnappingChange }) { - return ( - onGridSnappingChange(!useGridSnapping)} - > - {useGridSnapping ? : } - - ); -} - -export default GridSnappingToggle; diff --git a/src/icons/GridOffIcon.js b/src/icons/GridOffIcon.js deleted file mode 100644 index a1287c2..0000000 --- a/src/icons/GridOffIcon.js +++ /dev/null @@ -1,18 +0,0 @@ -import React from "react"; - -function GridOffIcon() { - return ( - - - - - ); -} - -export default GridOffIcon; diff --git a/src/icons/GridOnIcon.js b/src/icons/GridOnIcon.js deleted file mode 100644 index 1796b30..0000000 --- a/src/icons/GridOnIcon.js +++ /dev/null @@ -1,18 +0,0 @@ -import React from "react"; - -function GridOnIcon() { - return ( - - - - - ); -} - -export default GridOnIcon;