Skip to content

Commit 5816664

Browse files
committed
update check mark icon style
1 parent 9671527 commit 5816664

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

src/features/libraries/components/check-mark.component.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
import React from "react";
2+
import styles from "./check-mark.module.scss";
23

34
type CheckMarkComponentProps = {};
45

56
export const CheckMarkComponent: React.FC<CheckMarkComponentProps> = () => {
67
return (
78
<svg
9+
className={styles.check}
810
xmlns="http://www.w3.org/2000/svg"
911
width="24"
1012
height="24"
1113
viewBox="0 0 24 24"
12-
fill="none"
14+
fill="currentColor"
1315
>
14-
<path
15-
d="M7.9216 11.7687L10.75 14.5971L16.4069 8.94022L17.8211 10.3544L11.8107 16.3648C11.2249 16.9506 10.2752 16.9506 9.68937 16.3648L6.50739 13.1829L7.9216 11.7687Z"
16-
fill="#4CB7A3"
17-
/>
16+
<path d="M7.9216 11.7687L10.75 14.5971L16.4069 8.94022L17.8211 10.3544L11.8107 16.3648C11.2249 16.9506 10.2752 16.9506 9.68937 16.3648L6.50739 13.1829L7.9216 11.7687Z" />
1817
<path
1918
fillRule="evenodd"
2019
clipRule="evenodd"
2120
d="M12 1.56152C5.92487 1.56152 1 6.48639 1 12.5615C1 18.6367 5.92487 23.5615 12 23.5615C18.0751 23.5615 23 18.6367 23 12.5615C23 6.48639 18.0751 1.56152 12 1.56152ZM3 12.5615C3 7.59096 7.02944 3.56152 12 3.56152C16.9706 3.56152 21 7.59096 21 12.5615C21 17.5321 16.9706 21.5615 12 21.5615C7.02944 21.5615 3 17.5321 3 12.5615Z"
22-
fill="#4CB7A3"
2321
/>
2422
</svg>
2523
);
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@use "@/libs/theme/styles/variables" as *;
2+
3+
.check {
4+
color: var(--color_bg_state_success);
5+
}

0 commit comments

Comments
 (0)