import React from 'react' import { ComponentContext } from '../contexts/ComponentContext' import type { FontLanguageProps } from '../types' export function FontLanguage({ children, ...props }: FontLanguageProps) { const parentProps = React.useContext(ComponentContext) const language = React.useMemo(() => props, [JSON.stringify(props)]) return ( {children} ) }