2021-04-18 01:56:23 +02:00
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
2022-09-04 20:40:58 +02:00
|
|
|
import type { IconDefinition } from '@fortawesome/free-solid-svg-icons'
|
2021-04-18 01:56:23 +02:00
|
|
|
|
|
|
|
interface InterestItemProps {
|
|
|
|
title: string
|
|
|
|
fontAwesomeIcon: IconDefinition
|
|
|
|
}
|
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const InterestItem = (props: InterestItemProps): JSX.Element => {
|
2021-04-18 01:56:23 +02:00
|
|
|
const { fontAwesomeIcon, title } = props
|
|
|
|
|
|
|
|
return (
|
2023-04-02 22:44:09 +02:00
|
|
|
<li className='interest-item mx-2 my-2 h-8 w-8' title={title}>
|
2021-05-08 19:52:04 +02:00
|
|
|
<FontAwesomeIcon
|
2022-02-23 11:51:00 +01:00
|
|
|
className='block h-full w-full text-yellow dark:text-yellow-dark'
|
2021-05-08 19:52:04 +02:00
|
|
|
icon={fontAwesomeIcon}
|
|
|
|
/>
|
|
|
|
</li>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|