We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0714f06 commit da179b2Copy full SHA for da179b2
1 file changed
extensions/ql-vscode/src/remote-queries/view/DownloadSpinner.tsx
@@ -1,19 +1,15 @@
1
-import { Spinner } from '@primer/react';
+import { VSCodeProgressRing } from '@vscode/webview-ui-toolkit/react';
2
import * as React from 'react';
3
import styled from 'styled-components';
4
5
const SpinnerContainer = styled.span`
6
vertical-align: middle;
7
-
8
- svg {
9
- width: 0.8em;
10
- height: 0.8em;
11
- }
+ display: inline-block;
12
`;
13
14
const DownloadSpinner = () => (
15
<SpinnerContainer>
16
- <Spinner size="small" />
+ <VSCodeProgressRing style={{ height: '0.8em', width: '0.8em' }} />
17
</SpinnerContainer>
18
);
19
0 commit comments