From: Grégoire Aubert Date: Thu, 28 Sep 2017 12:03:05 +0000 (+0200) Subject: Update icons list X-Git-Tag: 6.6-RC1~160 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9730d937b6465116379d183835665deec4c38297;p=sonarqube.git Update icons list --- 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.js deleted file mode 100644 index 407323488ae..00000000000 --- a/server/sonar-web/src/main/js/components/icons-components/icons.js +++ /dev/null @@ -1,65 +0,0 @@ -/* - * 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. - */ -// @flow -import _AlertWarnIcon from './AlertWarnIcon'; -import _BubblesIcon from './BubblesIcon'; -import _BugIcon from './BugIcon'; -import _ChangeIcon from './ChangeIcon'; -import _ChartLegendIcon from './ChartLegendIcon'; -import _CheckIcon from './CheckIcon'; -import _CloseIcon from './CloseIcon'; -import _CodeSmellIcon from './CodeSmellIcon'; -import _DeleteIcon from './DeleteIcon'; -import _HelpIcon from './HelpIcon'; -import _HistoryIcon from './HistoryIcon'; -import _LinkIcon from './LinkIcon'; -import _ListIcon from './ListIcon'; -import _OpenCloseIcon from './OpenCloseIcon'; -import _OrganizationIcon from './OrganizationIcon'; -import _ProjectEventIcon from './ProjectEventIcon'; -import _QualifierIcon from './QualifierIcon'; -import _SortAscIcon from './SortAscIcon'; -import _SortDescIcon from './SortDescIcon'; -import _TreeIcon from './TreeIcon'; -import _TreemapIcon from './TreemapIcon'; -import _VulnerabilityIcon from './VulnerabilityIcon'; - -export const AlertWarnIcon = _AlertWarnIcon; -export const BubblesIcon = _BubblesIcon; -export const BugIcon = _BugIcon; -export const ChangeIcon = _ChangeIcon; -export const ChartLegendIcon = _ChartLegendIcon; -export const CheckIcon = _CheckIcon; -export const CloseIcon = _CloseIcon; -export const CodeSmellIcon = _CodeSmellIcon; -export const DeleteIcon = _DeleteIcon; -export const HelpIcon = _HelpIcon; -export const HistoryIcon = _HistoryIcon; -export const LinkIcon = _LinkIcon; -export const ListIcon = _ListIcon; -export const OpenCloseIcon = _OpenCloseIcon; -export const OrganizationIcon = _OrganizationIcon; -export const ProjectEventIcon = _ProjectEventIcon; -export const QualifierIcon = _QualifierIcon; -export const SortAscIcon = _SortAscIcon; -export const SortDescIcon = _SortDescIcon; -export const TreeIcon = _TreeIcon; -export const TreemapIcon = _TreemapIcon; -export const VulnerabilityIcon = _VulnerabilityIcon; diff --git a/server/sonar-web/src/main/js/components/icons-components/icons.ts b/server/sonar-web/src/main/js/components/icons-components/icons.ts new file mode 100644 index 00000000000..e783a6e9adb --- /dev/null +++ b/server/sonar-web/src/main/js/components/icons-components/icons.ts @@ -0,0 +1,78 @@ +/* + * 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 _AlertErrorIcon from './AlertErrorIcon'; +import _AlertWarnIcon from './AlertWarnIcon'; +import _BranchIcon from './BranchIcon'; +import _BubblesIcon from './BubblesIcon'; +import _BugIcon from './BugIcon'; +import _ChangeIcon from './ChangeIcon'; +import _ChartLegendIcon from './ChartLegendIcon'; +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; +export const ChartLegendIcon = _ChartLegendIcon; +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; +export const TreemapIcon = _TreemapIcon; +export const VulnerabilityIcon = _VulnerabilityIcon;