From 6f17541395dcedb52fe54e7755be95f2e5941086 Mon Sep 17 00:00:00 2001 From: Wouter Admiraal Date: Thu, 19 Aug 2021 12:49:11 +0200 Subject: SONAR-15297 Move all code from sonar-ui-common back to respective sonar-web folders --- .../src/main/js/components/icons/DetachIcon.tsx | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 server/sonar-web/src/main/js/components/icons/DetachIcon.tsx (limited to 'server/sonar-web/src/main/js/components/icons/DetachIcon.tsx') diff --git a/server/sonar-web/src/main/js/components/icons/DetachIcon.tsx b/server/sonar-web/src/main/js/components/icons/DetachIcon.tsx new file mode 100644 index 00000000000..4066ddf3327 --- /dev/null +++ b/server/sonar-web/src/main/js/components/icons/DetachIcon.tsx @@ -0,0 +1,32 @@ +/* + * SonarQube + * Copyright (C) 2009-2021 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'; +import Icon, { IconProps } from './Icon'; + +export default function DetachIcon({ fill = 'currentColor', ...iconProps }: IconProps) { + return ( + + + + ); +} -- cgit v1.2.3