File size: 428 Bytes
b022cb9
 
 
 
 
 
 
 
 
 
 
81f7921
b022cb9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { ReactNode } from "react"

import { cn } from "@/lib/utils"

export function SectionTitle({ className, children }: {
  className?: string
  children: ReactNode
}) {
  return (
    <div className={cn(
      `flex flex-col items-center justify-center`,
      `mt-6 pt-4 pb-1 w-full`,
      `border-t border-t-stone-400`,
      `text-xl font-semibold text-zinc-900`,
      className
    )}>
    {children}
    </div>
  )
}