Interface ITextProps

Interface for text component props.

interface ITextProps {
    args?: any[];
    dictionaryKey: string;
    jsx?: boolean;
    tag?: string | Node;
}

Hierarchy

  • HTMLProps<Text>
    • ITextProps

Properties

args?: any[]

List of arguments.

dictionaryKey: string

Key in the dictionary.

jsx?: boolean

Indicates if the value of the dictionary should be converted to JSX.

tag?: string | Node

Tag where the text should be rendered.