1import "./SectionTitle.css";
2
3interface SectionTitleProps {
4 children: React.ReactNode;
5 className?: string;
6}
7
8export function SectionTitle({ children, className = "" }: SectionTitleProps) {
9 return <h2 className={`section-title ${className}`.trim()}>{children}</h2>;
10}