import React from "react"; import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "@/lib/utils"; const sectionLabelVariants = cva( "text-sm font-semibold uppercase tracking-wide text-muted-foreground", { variants: { tone: { default: "", sidebar: "text-sidebar-foreground/70", }, }, defaultVariants: { tone: "default", }, }, ); function SectionLabel({ className, tone = "default", ...props }: React.ComponentProps<"h2"> & VariantProps) { return (

); } export { SectionLabel, sectionLabelVariants };