diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2022-07-26 11:56:16 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-28 20:02:55 +0000 |
commit | 76b594f966759863e4b6763c6f6cc01fadf2fba9 (patch) | |
tree | 2d3effc5b7765ab516a88dc109c95ae2ec1ca404 /server/sonar-web/src/main/js/components/icons/ClockIcon.tsx | |
parent | cc6d3c34170eaf755af6607962129f1657120c36 (diff) | |
download | sonarqube-76b594f966759863e4b6763c6f6cc01fadf2fba9.tar.gz sonarqube-76b594f966759863e4b6763c6f6cc01fadf2fba9.zip |
SONAR-16683 [893667] more icon contrasts
Diffstat (limited to 'server/sonar-web/src/main/js/components/icons/ClockIcon.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/icons/ClockIcon.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/icons/ClockIcon.tsx b/server/sonar-web/src/main/js/components/icons/ClockIcon.tsx index f85f02d858a..d8dfb4296e4 100644 --- a/server/sonar-web/src/main/js/components/icons/ClockIcon.tsx +++ b/server/sonar-web/src/main/js/components/icons/ClockIcon.tsx @@ -19,12 +19,13 @@ */ import classNames from 'classnames'; import * as React from 'react'; +import { colors } from '../../app/theme'; import Icon, { IconProps } from './Icon'; export default function ClockIcon({ className, ...iconProps }: IconProps) { return ( <Icon className={classNames('icon-clock', className)} {...iconProps}> - <g fill="#fff" stroke="#ADADAD" transform="matrix(1.4 0 0 1.4 .3 .7)"> + <g fill="#fff" stroke={colors.gray60} transform="matrix(1.4 0 0 1.4 .3 .7)"> <circle cx="5.5" cy="5.2" r="5" /> <path d="M5.6 2.9v2.7l2-.5" fillRule="nonzero" /> </g> |