mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-21 19:29:51 -04:00
16 lines
257 B
TypeScript
16 lines
257 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
export default function UIPrimaryTitle({ children }: { children: ReactNode }) {
|
|
return (
|
|
<h1
|
|
style={{
|
|
fontSize: '4rem',
|
|
marginTop: '0.25em',
|
|
marginBottom: '0.25em',
|
|
}}
|
|
>
|
|
{children}
|
|
</h1>
|
|
);
|
|
}
|