aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/icons-components/icons.ts
blob: 5483ff8007e0b88015cc0b335d38bd70ecef4d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * SonarQube
 * Copyright (C) 2009-2018 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
export { default as AlertErrorIcon } from './AlertErrorIcon';
export { default as AlertWarnIcon } from './AlertWarnIcon';
export { default as BranchIcon } from './BranchIcon';
export { default as BubblesIcon } from './BubblesIcon';
export { default as BugIcon } from './BugIcon';
// @deprecated use EditIcon
export { default as ChangeIcon } from './EditIcon';
export { default as ChartLegendIcon } from './ChartLegendIcon';
export { default as CheckIcon } from './CheckIcon';
export { default as ClearIcon } from './ClearIcon';
// @deprecated use ClearIcon
export { default as CloseIcon } from './ClearIcon';
export { default as CodeSmellIcon } from './CodeSmellIcon';
// @deprecated use ClearIcon
export { default as DeleteIcon } from './DeleteIcon';
export { default as EditIcon } from './EditIcon';
export { default as FavoriteIcon } from './FavoriteIcon';
export { default as HelpIcon } from './HelpIcon';
export { default as HistoryIcon } from './HistoryIcon';
export { default as LinkIcon } from './LinkIcon';
export { default as ListIcon } from './ListIcon';
export { default as LongLivingBranchIcon } from './LongLivingBranchIcon';
export { default as OpenCloseIcon } from './OpenCloseIcon';
export { default as PendingIcon } from './PendingIcon';
export { default as ProjectEventIcon } from './ProjectEventIcon';
export { default as PullRequestIcon } from './PullRequestIcon';
export { default as QualifierIcon } from './QualifierIcon';
export { default as ShortLivingBranchIcon } from './ShortLivingBranchIcon';
export { default as SortAscIcon } from './SortAscIcon';
export { default as SortDescIcon } from './SortDescIcon';
export { default as TreeIcon } from './TreeIcon';
export { default as TreemapIcon } from './TreemapIcon';
export { default as VulnerabilityIcon } from './VulnerabilityIcon';