aboutsummaryrefslogtreecommitdiff
path: root/components/ui.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-04-18 11:30:28 +0200
committerlonkaars <l.leblansch@gmail.com>2021-04-18 11:30:28 +0200
commit5d964348d6b7af2b17d9838b1fe8b78d76a68cbc (patch)
tree124ba30e157de1aacac595da1ccc67c0409eaeb1 /components/ui.tsx
parent18652c6ff5e10208298bea67ffce6b4ed327c97d (diff)
dprint fmt
Diffstat (limited to 'components/ui.tsx')
-rw-r--r--components/ui.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/ui.tsx b/components/ui.tsx
index 60b80f4..89e8ffe 100644
--- a/components/ui.tsx
+++ b/components/ui.tsx
@@ -105,7 +105,7 @@ export function Input(props: {
placeholder={props.label}
spellCheck={false}
defaultValue={props.value ? String(props.value) : ''}
- className={"input" + " " + (props.dark ? 'dark' : 'light') + " " + props.className}
+ className={'input' + ' ' + (props.dark ? 'dark' : 'light') + ' ' + props.className}
autoComplete={props.autocomplete}
autoFocus={props.autofocus}
/>;