We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eeea10 commit 6e225d3Copy full SHA for 6e225d3
extensions/ql-vscode/src/view/common/SearchBox.tsx
@@ -7,6 +7,10 @@ const TextField = styled(VscodeTextfield)`
7
width: 100%;
8
`;
9
10
+const SearchIcon = styled(Codicon)`
11
+ margin: 0 8px;
12
+`;
13
+
14
type Props = {
15
value: string;
16
placeholder: string;
@@ -37,7 +41,7 @@ export const SearchBox = ({
37
41
onInput={handleInput}
38
42
className={className}
39
43
>
40
- <Codicon name="search" label="Search..." slot="start" />
44
+ <SearchIcon name="search" label="Search..." slot="content-before" />
45
</TextField>
46
);
47
};
0 commit comments