Skip to content

Commit

Permalink
[@mantine/spotlight] Allow overriding search input size (#3181)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strajk committed Dec 31, 2022
1 parent 4a81c05 commit d952e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mantine-spotlight/src/Spotlight/Spotlight.tsx
Expand Up @@ -242,14 +242,14 @@ export function Spotlight({
>
<TextInput
autoComplete="chrome-please-just-do-not-show-it-thanks"
size="lg"
{...searchInputProps}
value={query}
onChange={handleInputChange}
onKeyDown={handleInputKeyDown}
onCompositionStart={() => setIMEOpen(true)}
onCompositionEnd={() => setIMEOpen(false)}
classNames={{ input: classes.searchInput }}
size="lg"
placeholder={searchPlaceholder}
icon={searchIcon}
onMouseEnter={resetHovered}
Expand Down

0 comments on commit d952e0b

Please sign in to comment.