mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { useEffect, useState } from "react"
|
|
import * as React from "react"
|
|
|
|
type InputTextProps = {
|
|
labelTitle?: string;
|
|
labelStyle?: string;
|
|
type?: string;
|
|
dataField?: string;
|
|
containerStyle?: string;
|
|
inputStyle?: string;
|
|
defaultValue?: string;
|
|
placeholder?: string;
|
|
autocomplete?: string
|
|
updateFormValue?: (value: string ) => void;
|
|
}
|
|
|
|
|
|
export function TextInput({labelTitle, labelStyle, type, dataField, containerStyle, inputStyle, defaultValue, placeholder, autocomplete, updateFormValue} : InputTextProps){
|
|
|
|
return(
|
|
<div className={`tw-form-control ${containerStyle}`}>
|
|
{labelTitle ? <label className="tw-label">
|
|
<span className={"tw-label-text tw-text-base-content " + labelStyle}>{labelTitle}</span>
|
|
</label>
|
|
: " "}
|
|
<input required type={type || "text"} name={dataField} defaultValue={defaultValue} placeholder={placeholder || ""} autoComplete={autocomplete} onChange={(e) => updateFormValue&& updateFormValue(e.target.value)}className={`tw-input tw-input-bordered tw-w-full ${inputStyle ? inputStyle : ""}`} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|