Created the Tag.jsx
This commit is contained in:
10
admin/src/pages/Home/components/Tag/Tag.jsx
Normal file
10
admin/src/pages/Home/components/Tag/Tag.jsx
Normal 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>
|
||||||
|
)
|
Reference in New Issue
Block a user