import { cn } from "@/lib/utils"; type SectionTitleProps = { label?: string; title?: React.ReactNode; text?: React.ReactNode; align?: "left" | "center"; children?: React.ReactNode; titleWidth?: number; contentWidth?: number; className?: string; }; export function SectionTitle({ label, title, text, align = "left", children, titleWidth, contentWidth, className, }: SectionTitleProps) { return (
{label}
{text}
{children}