Skip to content

Instantly share code, notes, and snippets.

View Shaam-K's full-sized avatar

Shaamurai Shaam-K

  • Chennai TN
  • 20:03 (UTC +05:30)
View GitHub Profile
@Shaam-K
Shaam-K / Typography.tsx
Created October 17, 2024 18:11 — forked from travyyx/Typography.tsx
A shadcn ui typography file for heading and paragraphs
import React from 'react';
interface Props {
className?: string;
children: string;
}
const H1: React.FC<Props> = ({className, children}) => {
return (
<h1 className={`scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl ${className}`}>