mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
25 lines
550 B
TypeScript
25 lines
550 B
TypeScript
import htmlParser from "html-react-parser"
|
|
|
|
export interface InterestParagraphProps {
|
|
title: string
|
|
description: string
|
|
}
|
|
|
|
export const InterestParagraph = (
|
|
props: InterestParagraphProps,
|
|
): JSX.Element => {
|
|
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>
|
|
<br />
|
|
<span>{htmlParser(description)}</span>
|
|
</p>
|
|
</>
|
|
)
|
|
}
|