We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f373e64 commit 770127eCopy full SHA for 770127e
extensions/ql-vscode/src/remote-queries/view/LastUpdated.tsx
@@ -1,8 +1,8 @@
1
import * as React from 'react';
2
-import { CalendarIcon } from '@primer/octicons-react';
+import { RepoPushIcon } from '@primer/octicons-react';
3
import styled from 'styled-components';
4
5
-const Calendar = styled.span`
+const IconContainer = styled.span`
6
flex-grow: 0;
7
text-align: right;
8
margin-right: 0;
@@ -19,9 +19,9 @@ type Props = { lastUpdated?: number };
19
const LastUpdated = ({ lastUpdated }: Props) => (
20
Number.isFinite(lastUpdated) ? (
21
<>
22
- <Calendar>
23
- <CalendarIcon size={16} />
24
- </Calendar>
+ <IconContainer>
+ <RepoPushIcon size={16} />
+ </IconContainer>
25
<Duration>
26
{humanizeDuration(lastUpdated)}
27
</Duration>
0 commit comments