Files
website/components/ui/Label.tsx
Kalidou Diagne 0ccb4fdcc9 feat: design v1.3
2024-06-06 14:23:09 +02:00

22 lines
607 B
TypeScript

import { classed } from "@tw-classed/react";
const Title = classed.h1("text-5xl font-black leading-1 text-primary md:text-6xl lg:text-[96px] lg:leading-[101px]");
const Subtitle = classed.h6("text-brown-50 font-black text-lg leading-none md:text-2xl lg:text-7xl md:leading-6");
const SectionTitle = classed.h6(
"font-semibold font-inter text-primary text-2xl leading-[24px] md:text-[56px] md:leading-[56px]"
);
const Paragraph = classed.span("text-primary text-sm md:text-xl leading-6");
const Label = {
displayName: "Label",
Title,
Subtitle,
SectionTitle,
Paragraph,
};
export { Label };