diff options
author | Kevin Silva <kevin.silva@sonarsource.com> | 2023-05-11 14:53:21 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-05-12 20:02:40 +0000 |
commit | 804a7a7d5a05ec01293c6ebfc85185b313b6670a (patch) | |
tree | fccffb435187262d718e614017356dd78009a36d /server/sonar-web/design-system/src/components/icons/TriangleUpIcon.tsx | |
parent | 57573e1ea66e415b32bb9dfb2c575f16be1d8277 (diff) | |
download | sonarqube-804a7a7d5a05ec01293c6ebfc85185b313b6670a.tar.gz sonarqube-804a7a7d5a05ec01293c6ebfc85185b313b6670a.zip |
SONAR-19167 - Create KeyboardHint component in DS
Diffstat (limited to 'server/sonar-web/design-system/src/components/icons/TriangleUpIcon.tsx')
-rw-r--r-- | server/sonar-web/design-system/src/components/icons/TriangleUpIcon.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/server/sonar-web/design-system/src/components/icons/TriangleUpIcon.tsx b/server/sonar-web/design-system/src/components/icons/TriangleUpIcon.tsx new file mode 100644 index 00000000000..9f192daf12b --- /dev/null +++ b/server/sonar-web/design-system/src/components/icons/TriangleUpIcon.tsx @@ -0,0 +1,23 @@ +/* + * SonarQube + * Copyright (C) 2009-2023 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 { TriangleUpIcon as Octicon } from '@primer/octicons-react'; +import { OcticonHoc } from './Icon'; + +export const TriangleUpIcon = OcticonHoc(Octicon); |