UNPKG

tesler-form-builder

Version:

Tesler form-builder based on formily (designable)

12 lines (11 loc) 348 B
import React from "react"; import { DnFC } from "@designable/react"; import "./styles.less"; export interface IDesignableTextProps { value?: string; content?: string; mode?: "normal" | "h1" | "h2" | "h3" | "p"; style?: React.CSSProperties; className?: string; } export declare const Text: DnFC<IDesignableTextProps>;