diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx b/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx index ce08d3d97ba..3c05c751176 100644 --- a/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx +++ b/server/sonar-web/src/main/js/components/icons-components/AlertErrorIcon.tsx @@ -19,22 +19,20 @@ */ import * as React from 'react'; import * as theme from '../../app/theme'; +import { IconProps } from './types'; -interface Props { - className?: string; - size?: number; -} - -export default function AlertErrorIcon({ className, size = 16 }: Props) { +export default function AlertErrorIcon({ className, fill = theme.red, size = 16 }: IconProps) { return ( <svg - xmlns="http://www.w3.org/2000/svg" className={className} - height={size} width={size} - viewBox="0 0 16 16"> + height={size} + viewBox="0 0 16 16" + version="1.1" + xmlnsXlink="http://www.w3.org/1999/xlink" + xmlSpace="preserve"> <path - style={{ fill: theme.red }} + style={{ fill }} d="M11.402 10.018q0-0.232-0.17-0.402l-1.616-1.616 1.616-1.616q0.17-0.17 0.17-0.402 0-0.241-0.17-0.411l-0.804-0.804q-0.17-0.17-0.411-0.17-0.232 0-0.402 0.17l-1.616 1.616-1.616-1.616q-0.17-0.17-0.402-0.17-0.241 0-0.411 0.17l-0.804 0.804q-0.17 0.17-0.17 0.411 0 0.232 0.17 0.402l1.616 1.616-1.616 1.616q-0.17 0.17-0.17 0.402 0 0.241 0.17 0.411l0.804 0.804q0.17 0.17 0.411 0.17 0.232 0 0.402-0.17l1.616-1.616 1.616 1.616q0.17 0.17 0.402 0.17 0.241 0 0.411-0.17l0.804-0.804q0.17-0.17 0.17-0.411zM14.857 8q0 1.866-0.92 3.442t-2.496 2.496-3.442 0.92-3.442-0.92-2.496-2.496-0.92-3.442 0.92-3.442 2.496-2.496 3.442-0.92 3.442 0.92 2.496 2.496 0.92 3.442z" /> </svg> |