mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-21 19:29:51 -04:00
18 lines
318 B
TypeScript
18 lines
318 B
TypeScript
const baseStyle = {
|
|
marginTop: '0rem',
|
|
marginBottom: '0.25em',
|
|
textAlign: 'center',
|
|
} as const;
|
|
|
|
export default function UISecondaryHeader({
|
|
style,
|
|
children,
|
|
...props
|
|
}: JSX.IntrinsicElements['h2']) {
|
|
return (
|
|
<h2 style={style ? { ...baseStyle, ...style } : baseStyle} {...props}>
|
|
{children}
|
|
</h2>
|
|
);
|
|
}
|