@eviljs/reactx
Version:
Awesome React UI Widgets
9 lines (8 loc) • 407 B
TypeScript
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;
}