import { cn } from '@/lib/utils'
import { ReactNode } from 'react'

type TSectionHeaderProps = {
  children: ReactNode;
  classStyle?: string;
}

const SectionHeader = ({
  children,
  classStyle,
}: TSectionHeaderProps) => {
  return (
    <span className={cn('font-semibold text-[20px] leading-[100%]', classStyle)}>{children}</span>
  )
}

export default SectionHeader