aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/design-system/src/components/icons/PinIcon.tsx
diff options
context:
space:
mode:
authorJeremy Davis <jeremy.davis@sonarsource.com>2023-06-06 16:11:38 +0200
committersonartech <sonartech@sonarsource.com>2023-06-09 20:03:10 +0000
commitf0347a3cf3e278c3d7ddb263a5dd0062b9421bff (patch)
tree8a802cd16eacd6554a36e81209fda1ca5ba77f72 /server/sonar-web/design-system/src/components/icons/PinIcon.tsx
parent2aaaff3deb00d311cf6fa1c871e7ea11c4871070 (diff)
downloadsonarqube-f0347a3cf3e278c3d7ddb263a5dd0062b9421bff.tar.gz
sonarqube-f0347a3cf3e278c3d7ddb263a5dd0062b9421bff.zip
SONAR-19472 Migrate the component table to the new UI
Diffstat (limited to 'server/sonar-web/design-system/src/components/icons/PinIcon.tsx')
-rw-r--r--server/sonar-web/design-system/src/components/icons/PinIcon.tsx23
1 files changed, 23 insertions, 0 deletions
diff --git a/server/sonar-web/design-system/src/components/icons/PinIcon.tsx b/server/sonar-web/design-system/src/components/icons/PinIcon.tsx
new file mode 100644
index 00000000000..e3bbab86917
--- /dev/null
+++ b/server/sonar-web/design-system/src/components/icons/PinIcon.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 { PinIcon as OcticonPinIcon } from '@primer/octicons-react';
+import { OcticonHoc } from './Icon';
+
+export const PinIcon = OcticonHoc(OcticonPinIcon, 'PinIcon');