We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4274a91 + 2047d24 commit 546c79aCopy full SHA for 546c79a
1 file changed
src/icons/CrossCircle/index.tsx
@@ -1,10 +1,10 @@
1
-import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
+import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2
import { IconProps } from '../types';
3
4
function CrossCircleIcon({
5
width = DEFAULT_WIDTH,
6
height = DEFAULT_HEIGHT,
7
- fill = 'currentColor',
+ fill = DEFAULT_FILL_NONE,
8
...props
9
}: IconProps): JSX.Element {
10
return (
@@ -20,7 +20,7 @@ function CrossCircleIcon({
20
<g clipPath="url(#a)">
21
<path
22
d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2Zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59Z"
23
- fillOpacity=".54"
+ fill={fill}
24
/>
25
</g>
26
<defs>
0 commit comments