diff options
Diffstat (limited to 'server/sonar-ui-common/components/icons/CopyIcon.tsx')
-rw-r--r-- | server/sonar-ui-common/components/icons/CopyIcon.tsx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/server/sonar-ui-common/components/icons/CopyIcon.tsx b/server/sonar-ui-common/components/icons/CopyIcon.tsx new file mode 100644 index 00000000000..9937c6dd457 --- /dev/null +++ b/server/sonar-ui-common/components/icons/CopyIcon.tsx @@ -0,0 +1,33 @@ +/* + * Sonar UI Common + * Copyright (C) 2019-2020 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 CopyIcon({ fill = 'currentColor', ...iconProps }: IconProps) { + return ( + <Icon {...iconProps}> + <g fill={fill} fillRule="nonzero"> + <path d="M2.931 15.005V3H2v13h9v-.995z" /> + <path d="M10 4.015h3V14H4V1h6v3.015zM9 8V6H8v2H6v1h2v2h1V9h2V8H9z" /> + <path d="M11 1v2h2a2.151 2.151 0 0 0-2-2z" /> + </g> + </Icon> + ); +} |