"use client"; import { Html } from "@pythnetwork/component-library/Html"; import type { ComponentProps } from "react"; import { useLocale } from "react-aria"; type HtmlWithLangProps = Omit, "lang">; export const HtmlWithLang = (props: HtmlWithLangProps) => { const locale = useLocale(); return ; };