Skip to content

Commit 770127e

Browse files
committed
Use the repo push icon
1 parent f373e64 commit 770127e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

extensions/ql-vscode/src/remote-queries/view/LastUpdated.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as React from 'react';
2-
import { CalendarIcon } from '@primer/octicons-react';
2+
import { RepoPushIcon } from '@primer/octicons-react';
33
import styled from 'styled-components';
44

5-
const Calendar = styled.span`
5+
const IconContainer = styled.span`
66
flex-grow: 0;
77
text-align: right;
88
margin-right: 0;
@@ -19,9 +19,9 @@ type Props = { lastUpdated?: number };
1919
const LastUpdated = ({ lastUpdated }: Props) => (
2020
Number.isFinite(lastUpdated) ? (
2121
<>
22-
<Calendar>
23-
<CalendarIcon size={16} />
24-
</Calendar>
22+
<IconContainer>
23+
<RepoPushIcon size={16} />
24+
</IconContainer>
2525
<Duration>
2626
{humanizeDuration(lastUpdated)}
2727
</Duration>

0 commit comments

Comments
 (0)