1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 07:54:22 +00:00

🧹 Remove unused components

This commit is contained in:
Steffo 2021-03-24 16:00:15 +01:00
parent 80ecbc2801
commit 4835e82546
Signed by: steffo
GPG key ID: 6965406171929D01
4 changed files with 0 additions and 48 deletions

View file

@ -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 (
<Color builtin={"red"}>
<ListItem className={classNames(style.minusli, className)}>
{children}
</ListItem>
</Color>
)
}
MinusLI.propTypes = {
children: PropTypes.node,
className: PropTypes.string
}

View file

@ -1,3 +0,0 @@
.minusli {
list-style-type: " "; /* Not -, it's a different character! */
}

View file

@ -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 (
<Color builtin={"lime"}>
<ListItem className={classNames(style.plusli, className)}>
{children}
</ListItem>
</Color>
)
}
PlusLI.propTypes = {
children: PropTypes.node,
className: PropTypes.string
}

View file

@ -1,3 +0,0 @@
.plusli {
list-style-type: "+ ";
}