File size: 167 Bytes
2b64e58
 
 
 
 
1
2
3
4
5
6
import { PropsWithChildren } from 'react';

export function Title({ children }: PropsWithChildren) {
  return <span className="font-bold text-xl">{children}</span>;
}