1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 06:25:53 +02:00
.profile/components/Setup/TableTitle.tsx
2021-04-18 01:56:23 +02:00

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>
</>
)
}