Created the Tag.jsx

This commit is contained in:
2022-12-27 21:41:43 +01:00
parent 7e0b3887af
commit 99cce4218d

View File

@ -0,0 +1,10 @@
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {faTag} from "@fortawesome/free-solid-svg-icons";
import "./styles.sass";
export const Tag = (props) => (
<div className="tag">
<FontAwesomeIcon icon={faTag} />
<h3>{props.name}</h3>
</div>
)