Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
167 Bytes
import { PropsWithChildren } from 'react';
export function Title({ children }: PropsWithChildren) {
return <span className="font-bold text-xl">{children}</span>;
}