Skip to content
Snippets Groups Projects
Title.tsx 262 B
Newer Older
  • Learn to ignore specific revisions
  • Jacopo Gasparetto's avatar
    Jacopo Gasparetto committed
    type Props = {
      children: string
    }
    
    export const Title = ({ children }: Props) => {
      return (
        <div className="mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white">
          {children}
        </div>
      )
    }