Skip to content

Instantly share code, notes, and snippets.

View travyyx's full-sized avatar
🏠
Working from home

Travislicious. travyyx

🏠
Working from home
  • Ivory Coast
  • 20:05 (UTC)
View GitHub Profile
@travyyx
travyyx / Typography.tsx
Created June 19, 2024 22:09
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}`}>