1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 06:25:53 +02:00
.profile/components/Interests/InterestsList/index.tsx

20 lines
659 B
TypeScript
Raw Normal View History

import { faCode, faMicrochip } from "@fortawesome/free-solid-svg-icons"
import { faGit } from "@fortawesome/free-brands-svg-icons"
2021-04-18 01:56:23 +02:00
import { InterestItem } from "./InterestItem"
2021-04-18 01:56:23 +02:00
export const InterestsList = (): JSX.Element => {
2021-04-18 01:56:23 +02:00
return (
<div className="my-4 flex justify-center">
<ul className="m-0 flex w-96 list-none justify-around p-0">
<InterestItem title="Developer Full Stack" fontAwesomeIcon={faCode} />
<InterestItem
title="Passionate about High-Tech"
fontAwesomeIcon={faMicrochip}
/>
<InterestItem title="Open-Source enthusiast" fontAwesomeIcon={faGit} />
</ul>
</div>
2021-04-18 01:56:23 +02:00
)
}