File size: 226 Bytes
b9fe2b4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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>
  );
}