From 4835e825465cc440489c74389d95d30ea67d443b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 24 Mar 2021 16:00:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20unused=20components?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MinusLI.js | 21 --------------------- src/components/MinusLI.module.css | 3 --- src/components/PlusLI.js | 21 --------------------- src/components/PlusLI.module.css | 3 --- 4 files changed, 48 deletions(-) delete mode 100644 src/components/MinusLI.js delete mode 100644 src/components/MinusLI.module.css delete mode 100644 src/components/PlusLI.js delete mode 100644 src/components/PlusLI.module.css 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