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

21 lines
469 B
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import htmlParser from 'html-react-parser'
export interface InterestParagraphProps {
title: string
description: string
}
export const InterestParagraph: React.FC<InterestParagraphProps> = (props) => {
const { title, description } = props
return (
<>
<p className='text-center'>
<strong className='important'>{title}</strong>
<br />
<span className='paragraph-color'>{htmlParser(description)}</span>
</p>
</>
)
}