import { cn } from "@/lib/utils" interface SectionTitleProps { children: React.ReactNode icon?: React.ReactNode className?: string } function SectionTitle({ children, icon, className }: SectionTitleProps) { return (
{icon} {children}
) } export { SectionTitle, type SectionTitleProps }