mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-22 16:04:21 +00:00
🧹 Remove unused components
This commit is contained in:
parent
80ecbc2801
commit
4835e82546
4 changed files with 0 additions and 48 deletions
|
@ -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
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
.minusli {
|
|
||||||
list-style-type: "− "; /* Not -, it's a different character! */
|
|
||||||
}
|
|
|
@ -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
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
.plusli {
|
|
||||||
list-style-type: "+ ";
|
|
||||||
}
|
|
Loading…
Reference in a new issue