From 0c66605ff3957624bc9b8536ea273f576463380f Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Wed, 1 Nov 2017 20:13:17 +0100 Subject: SONAR-10023 Clear actions must be consistent --- .../js/components/icons-components/ClearIcon.tsx | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 server/sonar-web/src/main/js/components/icons-components/ClearIcon.tsx (limited to 'server/sonar-web/src/main/js/components/icons-components/ClearIcon.tsx') diff --git a/server/sonar-web/src/main/js/components/icons-components/ClearIcon.tsx b/server/sonar-web/src/main/js/components/icons-components/ClearIcon.tsx new file mode 100644 index 00000000000..741e9178272 --- /dev/null +++ b/server/sonar-web/src/main/js/components/icons-components/ClearIcon.tsx @@ -0,0 +1,39 @@ +/* + * SonarQube + * Copyright (C) 2009-2017 SonarSource SA + * mailto:contact 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 { IconProps } from './types'; + +export default function ClearIcon({ className, fill = 'currentColor', size = 16 }: IconProps) { + return ( + + + + ); +} -- cgit v1.2.3