"src/vscode:/vscode.git/clone" did not exist on "becfa5b232ba02a4b779061857a7a07881897b37"
Icon.tsx 1.35 KB
Newer Older
1
import * as React from 'react';
2
import { Icon, initializeIcons } from '@fluentui/react';
3
4
5
6
7
8
9
10
11
12
13
initializeIcons();

const infoIcon = <Icon iconName='info' />;
const warining = <Icon iconName='Warning' />;
const errorBadge = <Icon iconName='ErrorBadge' />;
const completed = <Icon iconName='Completed' />;
const blocked = <Icon iconName='StatusCircleBlock' />;
const copy = <Icon iconName='Copy' />;
const tableListIcon = <Icon iconName='BulletedList' />;
const downLoadIcon = { iconName: 'Download' };
const infoIconAbout = { iconName: 'info' };
14
const timeIcon = { iconName: 'ReminderTime' };
15
const disableUpdates = { iconName: 'DisableUpdates' };
16
const requency = { iconName: 'Timer' };
17
18
const closeTimer = { iconName: 'Blocked2' };
const LineChart = <Icon iconName='LineChart' />;
19
20
21
const Edit = <Icon iconName='Edit' />;
const CheckMark = <Icon iconName='CheckMark' />;
const Cancel = <Icon iconName='Cancel' />;
22
23
24
const ReplyAll = { iconName: 'ReplyAll' };
const RevToggleKey = { iconName: 'RevToggleKey' };
const ChevronRightMed = <Icon iconName='ChevronRightMed' />;
25

26
27
28
29
30
31
32
33
34
35
36
37
38
39
export {
    infoIcon,
    warining,
    errorBadge,
    completed,
    blocked,
    infoIconAbout,
    copy,
    tableListIcon,
    downLoadIcon,
    timeIcon,
    disableUpdates,
    requency,
    closeTimer,
40
41
42
    LineChart,
    Edit,
    CheckMark,
43
44
45
46
    Cancel,
    ReplyAll,
    RevToggleKey,
    ChevronRightMed
47
};