aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx17
1 files changed, 5 insertions, 12 deletions
diff --git a/server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx b/server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx
index 786343a412c..168626ec296 100644
--- a/server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx
+++ b/server/sonar-web/src/main/js/components/icons-components/BubblesIcon.tsx
@@ -18,22 +18,15 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import * as React from 'react';
-import { IconProps } from './types';
+import Icon, { IconProps } from './Icon';
-export default function BubblesIcon({ className, fill = 'currentColor', size = 16 }: IconProps) {
+export default function BubblesIcon({ className, fill = 'currentColor', size }: IconProps) {
return (
- <svg
- className={className}
- width={size}
- height={size}
- viewBox="0 0 16 16"
- version="1.1"
- xmlnsXlink="http://www.w3.org/1999/xlink"
- xmlSpace="preserve">
+ <Icon className={className} size={size} style={{ fillRule: 'nonzero' }}>
<path
- style={{ fill }}
d="M4.1 10.2c1 0 1.9.8 1.9 1.9S5.1 14 4.1 14s-1.9-.8-1.9-1.9.8-1.9 1.9-1.9m0-2C2 8.2.2 9.9.2 12.1S1.9 16 4.1 16 8 14.3 8 12.1 6.2 8.2 4.1 8.2zM10.3 2c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7-3.8-1.6-3.8-3.7S8.2 2 10.3 2m0-2C7.1 0 4.5 2.6 4.5 5.7s2.6 5.7 5.7 5.7S16 8.9 16 5.7 13.4 0 10.3 0z"
+ style={{ fill }}
/>
- </svg>
+ </Icon>
);
}