1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Interests/InterestParagraph.tsx

25 lines
550 B
TypeScript
Raw Normal View History

import htmlParser from "html-react-parser"
2021-04-18 01:56:23 +02:00
export interface InterestParagraphProps {
title: string
description: string
}
export const InterestParagraph = (
props: InterestParagraphProps,
): JSX.Element => {
2021-04-18 01:56:23 +02:00
const { title, description } = props
return (
<>
<p className="my-6 text-center text-gray dark:text-gray-dark">
<strong className="text-lg font-semibold text-yellow dark:text-yellow-dark">
{title}
</strong>
2021-04-18 01:56:23 +02:00
<br />
<span>{htmlParser(description)}</span>
2021-04-18 01:56:23 +02:00
</p>
</>
)
}