diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-18 11:30:28 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-18 11:30:28 +0200 |
commit | 5d964348d6b7af2b17d9838b1fe8b78d76a68cbc (patch) | |
tree | 124ba30e157de1aacac595da1ccc67c0409eaeb1 /components | |
parent | 18652c6ff5e10208298bea67ffce6b4ed327c97d (diff) |
dprint fmt
Diffstat (limited to 'components')
-rw-r--r-- | components/ui.tsx | 2 |
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} />; |