mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-10 06:18:07 +01:00
22 lines
412 B
TypeScript
22 lines
412 B
TypeScript
|
export const TableTitle: React.FC = props => {
|
||
|
const { children } = props
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<div className='col-24'>
|
||
|
<p className='text-center title-table'>
|
||
|
<strong className='important'>{children}</strong>
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<style jsx>{`
|
||
|
.title-table {
|
||
|
font-size: 24px;
|
||
|
margin: 40px 0 20px 0;
|
||
|
}
|
||
|
`}
|
||
|
</style>
|
||
|
</>
|
||
|
)
|
||
|
}
|