import * as React from 'react'; export type HtmlProps = Readonly>; export const Html = React.forwardRef( ({ children, lang = 'en', dir = 'ltr', ...props }, ref) => ( {children} ), ); Html.displayName = 'Html';