import React from "react"; import { Text } from "@/components/common/Text"; import { useScaledTVTypography } from "@/constants/TVTypography"; export interface TVSectionHeaderProps { title: string; } export const TVSectionHeader: React.FC = ({ title }) => { const typography = useScaledTVTypography(); return ( {title} ); };