Last updated on 28 Oct 2025
If you have a specific query that doesnt cover license page, feel free to open a support ticket or ask via chat, we will get back to you ASAP.
Disclaimer: The Tailwind name and logos are registered trademarks of Tailwind Labs Inc. However, TailGrids maintains no affiliation, association, or part in Tailwind Labs or the official Tailwind CSS.
"use client";
import { cn } from "@/lib/cn";
import { useState } from "react";
interface CodeBlockProps {
code: string;
highlightedHtml: string;
language?: string;
showLineNumbers?: boolean;
className?: string;
}