Skip to content

Commit 1bda2b2

Browse files
committed
changed the + icon to the tick one
1 parent 8ff8daa commit 1bda2b2

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

client/modules/IDE/components/QuickAddList/Icons.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import CloseIcon from '../../../../images/close.svg';
4+
import CheckIcon from '../../../../images/check_encircled.svg';
45

56
const Icons = ({ isAdded }) => {
67
const classes = [
@@ -18,7 +19,7 @@ const Icons = ({ isAdded }) => {
1819
aria-label="Descending"
1920
focusable="false"
2021
/>
21-
<CloseIcon
22+
<CheckIcon
2223
className="quick-add__add-icon"
2324
role="img"
2425
aria-label="Descending"

client/styles/components/_quick-add.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,6 @@
8181
}
8282
}
8383

84-
.quick-add__add-icon {
85-
transform: rotate(45deg);
86-
}
87-
8884
.quick-add__item,
8985
.quick-add__item-toggle,
9086
.quick-add__item-toggle:focus {

0 commit comments

Comments
 (0)