import { cn } from '@/lib/utils';
import React from 'react'

type TPageTitleProps = {
  children: React.ReactNode;
  style?: React.CSSProperties;
  className?: string;
}

const PageTitle = ({
  children,
  style,
  className,
}: TPageTitleProps) => {
  return (
    <h3 className={cn('font-semibold text-[24px] leading-[100%] tracking-[0]', className)} style={style}>{children}</h3>
  )
}

export default PageTitle