Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
226 Bytes
import { PropsWithChildren } from 'react';
export function Subhead({ children }: PropsWithChildren) {
return (
<div className="text-xl font-bold mb-4 text-colors-text-neutral-strong">
{children}
</div>
);
}