TextComponent
type TextComponent = { editable?: | false | { allowAutofillExtensions?: boolean; autoComplete?: string; autoFocus?: boolean; autoSelect?: boolean; name: string; pattern?: string; placeholder?: string; required?: boolean; }; id?: string; italic?: boolean; key?: string; lineThrough?: boolean; minLines?: number; size?: TextSize; streaming?: boolean; type: 'Text'; value: string; width?: number | string;} & BaseTextProps;
Type Declaration
Section titled “Type Declaration”editable?
Section titled “editable?”optional editable: | false | { allowAutofillExtensions?: boolean; autoComplete?: string; autoFocus?: boolean; autoSelect?: boolean; name: string; pattern?: string; placeholder?: string; required?: boolean;};
optional id: string;
italic?
Section titled “italic?”optional italic: boolean;
optional key: string;
lineThrough?
Section titled “lineThrough?”optional lineThrough: boolean;
minLines?
Section titled “minLines?”optional minLines: number;
optional size: TextSize;
streaming?
Section titled “streaming?”optional streaming: boolean;
type: 'Text';
value: string;
width?
Section titled “width?”optional width: number | string;