interface TextWithEditModeProps {
    "aria-label": string;
    children?: ReactNode;
    disableIfBlank?: boolean;
    key?: Key;
    onUpdate?: (text: string) => void;
    placeholder: string;
    ref?: LegacyRef<default>;
    text?: string;
}

Hierarchy

  • Props<default>
    • TextWithEditModeProps

Properties

"aria-label": string
children?: ReactNode
disableIfBlank?: boolean
key?: Key
onUpdate?: (text: string) => void
placeholder: string
ref?: LegacyRef<default>
text?: string