Skip to content

Commit 5b217aa

Browse files
authored
Merge pull request #1411 from alexquincy/lc/fix-add-circle-icon-fill
fix(icons): apply fill to AddCircleIcon path, drop full-canvas rect
2 parents 0a38c19 + 4b65b56 commit 5b217aa

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/icons/AddCircle/AddCircleIcon.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
22
import { IconProps } from '../types';
33

4-
export const AddIconCircleBordered = ({
4+
export const AddCircleIcon = ({
55
width = DEFAULT_WIDTH,
66
height = DEFAULT_HEIGHT,
77
fill = DEFAULT_FILL_NONE,
@@ -15,10 +15,12 @@ export const AddIconCircleBordered = ({
1515
xmlns="http://www.w3.org/2000/svg"
1616
{...props}
1717
>
18-
<path d="M0 0h48v48h-48z" fill={fill} />
19-
<path d="M26 14h-4v8h-8v4h8v8h4v-8h8v-4h-8v-8zm-2-10c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm0 36c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z" />
18+
<path
19+
d="M26 14h-4v8h-8v4h8v8h4v-8h8v-4h-8v-8zm-2-10c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm0 36c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z"
20+
fill={fill}
21+
/>
2022
</svg>
2123
);
2224
};
2325

24-
export default AddIconCircleBordered;
26+
export default AddCircleIcon;

0 commit comments

Comments
 (0)