UNPKG

ultimate-text-to-image

Version:

Generate UTF8 texts into image with auto line break for all international language, including Chinese, Japanese, Korean, etc..

13 lines (12 loc) 369 B
import React from "react"; import { IOptions } from "./types"; import { UltimateTextToImage } from "./UltimateTextToImage"; type IProps = { text: string; debug?: boolean; } & IOptions; export declare class UltimateTextToImageComponent extends React.Component<IProps, any> { ultimateTextToImage?: UltimateTextToImage; render(): JSX.Element; } export {};