'use client'; import React from 'react'; export interface TitleContentBlockProps { title: string; content: React.ReactNode; titleColor?: string; titleClassName?: string; contentClassName?: string; containerClassName?: string; titleAs?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div'; contentAs?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'div'; spacing?: 'sm' | 'md' | 'lg'; } const spacingMap = { sm: 'space-y-1', md: 'space-y-2', lg: 'space-y-4' }; export function TitleContentBlock({ title, content, titleColor = 'text-ods-text-secondary', titleClassName = "text-h5 tracking-[-0.28px]", contentClassName = "text-h2 tracking-[-0.64px] text-ods-text-primary", containerClassName = '', titleAs: TitleElement = 'div', contentAs: ContentElement = 'h4', spacing = 'md' }: TitleContentBlockProps) { const titleClasses = `${titleClassName} ${titleColor}`; return (
{title} {content}
); }