diff --git a/src/components/MinusLI.js b/src/components/MinusLI.js
deleted file mode 100644
index b18867b..0000000
--- a/src/components/MinusLI.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import React from "react";
-import {ListItem, Color} from "bluelib/lib/components";
-import PropTypes from "prop-types";
-import classNames from "classnames";
-import style from "./MinusLI.module.css";
-
-
-export default function MinusLI({children, className}) {
- return (
-
-
- {children}
-
-
- )
-}
-
-MinusLI.propTypes = {
- children: PropTypes.node,
- className: PropTypes.string
-}
diff --git a/src/components/MinusLI.module.css b/src/components/MinusLI.module.css
deleted file mode 100644
index d44ac90..0000000
--- a/src/components/MinusLI.module.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.minusli {
- list-style-type: "− "; /* Not -, it's a different character! */
-}
\ No newline at end of file
diff --git a/src/components/PlusLI.js b/src/components/PlusLI.js
deleted file mode 100644
index b741603..0000000
--- a/src/components/PlusLI.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import React from "react";
-import {ListItem, Color} from "bluelib/lib/components";
-import PropTypes from "prop-types";
-import classNames from "classnames";
-import style from "./PlusLI.module.css";
-
-
-export default function PlusLI({children, className}) {
- return (
-
-
- {children}
-
-
- )
-}
-
-PlusLI.propTypes = {
- children: PropTypes.node,
- className: PropTypes.string
-}
diff --git a/src/components/PlusLI.module.css b/src/components/PlusLI.module.css
deleted file mode 100644
index 9c5eb3d..0000000
--- a/src/components/PlusLI.module.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.plusli {
- list-style-type: "+ ";
-}
\ No newline at end of file