UNPKG

@eviljs/reactx

Version:
9 lines (8 loc) 407 B
import type { ElementProps, Props } from '@eviljs/react/props'; export declare const HtmlSandboxTag = "html-sandbox"; export declare function HtmlSandbox(props: Props<HtmlSandboxProps>): React.JSX.Element; export declare function defineHtmlSandbox(tagOptional?: undefined | string): void; export interface HtmlSandboxProps extends ElementProps<'div'> { tag?: undefined | string; children: string; }