aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Inputs/Text.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Inputs/Text.js')
-rw-r--r--frontend/src/components/Inputs/Text.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/components/Inputs/Text.js b/frontend/src/components/Inputs/Text.js
new file mode 100644
index 0000000..866da91
--- /dev/null
+++ b/frontend/src/components/Inputs/Text.js
@@ -0,0 +1,25 @@
+import CharLimit from "../decorators/CharLimit";
+import React from "react";
+import {Labelled} from "./shared";
+
+export const Text = React.forwardRef(({label, id, readOnly, onChange, value, maxLength, autoFocus}, ref) => {
+ return (
+ <Labelled label={label} value={value}>
+ <input
+ ref={ref}
+ name={label}
+ readOnly={readOnly}
+ className="lt-shadow"
+ placeholder="Title"
+ id={id}
+ type="text"
+ autoFocus={autoFocus}
+ autoComplete="off"
+ onChange={onChange}
+ value={value} />
+ <CharLimit
+ content={value}
+ maxLength={maxLength} />
+ </Labelled>
+ );
+}) \ No newline at end of file