diff options
Diffstat (limited to 'packages/ui/src/components/input.tsx')
| -rw-r--r-- | packages/ui/src/components/input.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/packages/ui/src/components/input.tsx b/packages/ui/src/components/input.tsx index 7688d9fc5..9557e90f3 100644 --- a/packages/ui/src/components/input.tsx +++ b/packages/ui/src/components/input.tsx @@ -21,12 +21,7 @@ export function Input(props: InputProps) { "onKeyDown", ]) return ( - <Kobalte - data-component="input" - value={local.value} - onChange={local.onChange} - onKeyDown={local.onKeyDown} - > + <Kobalte data-component="input" value={local.value} onChange={local.onChange} onKeyDown={local.onKeyDown}> <Show when={local.label}> <Kobalte.Label data-slot="label" classList={{ "sr-only": local.hideLabel }}> {local.label} |
