From 9730d937b6465116379d183835665deec4c38297 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9goire=20Aubert?= Date: Thu, 28 Sep 2017 14:03:05 +0200 Subject: [PATCH] Update icons list --- .../icons-components/AlertErrorIcon.tsx | 41 +++++++++++++++++++ .../icons-components/{icons.js => icons.ts} | 15 ++++++- 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx rename server/sonar-web/src/main/js/components/icons-components/{icons.js => icons.ts} (79%) diff --git a/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx b/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx new file mode 100644 index 00000000000..88d8454068f --- /dev/null +++ b/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx @@ -0,0 +1,41 @@ +/* + * SonarQube + * Copyright (C) 2009-2017 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. + */ +import * as React from 'react'; + +interface Props { + className?: string; + size?: number; +} + +export default function AlertErrorIcon({ className, size = 16 }: Props) { + return ( + + + + ); +} diff --git a/server/sonar-web/src/main/js/components/icons-components/icons.js b/server/sonar-web/src/main/js/components/icons-components/icons.ts similarity index 79% rename from server/sonar-web/src/main/js/components/icons-components/icons.js rename to server/sonar-web/src/main/js/components/icons-components/icons.ts index 407323488ae..e783a6e9adb 100644 --- a/server/sonar-web/src/main/js/components/icons-components/icons.js +++ b/server/sonar-web/src/main/js/components/icons-components/icons.ts @@ -17,8 +17,9 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -// @flow +import _AlertErrorIcon from './AlertErrorIcon'; import _AlertWarnIcon from './AlertWarnIcon'; +import _BranchIcon from './BranchIcon'; import _BubblesIcon from './BubblesIcon'; import _BugIcon from './BugIcon'; import _ChangeIcon from './ChangeIcon'; @@ -27,21 +28,28 @@ import _CheckIcon from './CheckIcon'; import _CloseIcon from './CloseIcon'; import _CodeSmellIcon from './CodeSmellIcon'; import _DeleteIcon from './DeleteIcon'; +import _FavoriteIcon from './FavoriteIcon'; import _HelpIcon from './HelpIcon'; import _HistoryIcon from './HistoryIcon'; import _LinkIcon from './LinkIcon'; import _ListIcon from './ListIcon'; +import _LongLivingBranchIcon from './LongLivingBranchIcon'; import _OpenCloseIcon from './OpenCloseIcon'; import _OrganizationIcon from './OrganizationIcon'; +import _PendingIcon from './PendingIcon'; import _ProjectEventIcon from './ProjectEventIcon'; +import _PullRequestIcon from './PullRequestIcon'; import _QualifierIcon from './QualifierIcon'; +import _ShortLivingBranchIcon from './ShortLivingBranchIcon'; import _SortAscIcon from './SortAscIcon'; import _SortDescIcon from './SortDescIcon'; import _TreeIcon from './TreeIcon'; import _TreemapIcon from './TreemapIcon'; import _VulnerabilityIcon from './VulnerabilityIcon'; +export const AlertErrorIcon = _AlertErrorIcon; export const AlertWarnIcon = _AlertWarnIcon; +export const BranchIcon = _BranchIcon; export const BubblesIcon = _BubblesIcon; export const BugIcon = _BugIcon; export const ChangeIcon = _ChangeIcon; @@ -50,14 +58,19 @@ export const CheckIcon = _CheckIcon; export const CloseIcon = _CloseIcon; export const CodeSmellIcon = _CodeSmellIcon; export const DeleteIcon = _DeleteIcon; +export const FavoriteIcon = _FavoriteIcon; export const HelpIcon = _HelpIcon; export const HistoryIcon = _HistoryIcon; export const LinkIcon = _LinkIcon; export const ListIcon = _ListIcon; +export const LongLivingBranchIcon = _LongLivingBranchIcon; export const OpenCloseIcon = _OpenCloseIcon; export const OrganizationIcon = _OrganizationIcon; +export const PendingIcon = _PendingIcon; export const ProjectEventIcon = _ProjectEventIcon; +export const PullRequestIcon = _PullRequestIcon; export const QualifierIcon = _QualifierIcon; +export const ShortLivingBranchIcon = _ShortLivingBranchIcon; export const SortAscIcon = _SortAscIcon; export const SortDescIcon = _SortDescIcon; export const TreeIcon = _TreeIcon; -- 2.39.5