Created the HomeTool.jsx

This commit is contained in:
Mathias Wagner 2023-05-30 18:15:35 +02:00
parent cf3de0f06b
commit f3c35279d4
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,10 @@
import "./styles.sass";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
export const HomeTool = ({icon, title, description}) => (
<div className="home-tool">
<FontAwesomeIcon icon={icon} />
<h1>{title}</h1>
<p>{description}</p>
</div>
)