@eturnity/eturnity_reusable_components 1.0.36 → 1.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -28,16 +28,16 @@ const Icon = styled("span", iconAttrs)`
|
|
|
28
28
|
cursor: pointer;
|
|
29
29
|
background-image: ${(props) =>
|
|
30
30
|
props.color === "red"
|
|
31
|
-
? `url(${require("../../assets/
|
|
31
|
+
? `url(${require("../../assets/icons/delete_icon.svg")})`
|
|
32
32
|
: props.color === "gray"
|
|
33
|
-
? `url(${require("../../assets/
|
|
34
|
-
: `url(${require("../../assets/
|
|
33
|
+
? `url(${require("../../assets/icons/delete_icon_gray.svg")})`
|
|
34
|
+
: `url(${require("../../assets/icons/delete_icon.svg")})`};
|
|
35
35
|
|
|
36
36
|
&:hover {
|
|
37
37
|
box-shadow: 0px 4px 9px 1px rgb(0 0 0 / 20%);
|
|
38
38
|
border-radius: 4px;
|
|
39
39
|
background-image: ${() =>
|
|
40
|
-
`url(${require("../../assets/
|
|
40
|
+
`url(${require("../../assets/icons/delete_icon.svg")})`};
|
|
41
41
|
}
|
|
42
42
|
`
|
|
43
43
|
|