UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

11 lines (10 loc) 394 B
import type { JSX, ReactNode } from 'react'; export type BrowserTranslateProps = { /** * Set to `true` to disable browser translation (e.g. Google Translate) * on all form components and their portal content within this scope. */ off?: boolean; children: ReactNode; }; export default function BrowserTranslate({ off, children, }: BrowserTranslateProps): JSX.Element;