aboutsummaryrefslogtreecommitdiff
path: root/src/components/ui.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui.tsx')
-rw-r--r--src/components/ui.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/ui.tsx b/src/components/ui.tsx
index 29f77ff..c2ce35e 100644
--- a/src/components/ui.tsx
+++ b/src/components/ui.tsx
@@ -57,9 +57,10 @@ export function Button(props: {
export function Input(props: {
label?: string,
style?: CSSProperties,
- type?: string
+ type?: string,
+ id?: string
}) {
- return <input type={props.type || "text"} placeholder={props.label} spellCheck={false} style={{
+ return <input id={props.id} type={props.type || "text"} placeholder={props.label} spellCheck={false} style={{
padding: 12,
border: 0,
width: "calc(100% - 24px)",