sfc-utils 1.3.9 → 1.3.10
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/icons.js +2 -2
- package/package.json +1 -1
package/icons.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// A catalog of the icons we use in DevHub projects that can be imported individually
|
|
2
2
|
// This is crucial, so that the project only bundles the icons it needs
|
|
3
3
|
|
|
4
|
-
const xIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M376.6 427.5c11.31 13.58 9.484 33.75-4.094 45.06c-5.984 4.984-13.25 7.422-20.47 7.422c-9.172 0-18.27-3.922-24.59-11.52L192 305.1l-135.4 162.5c-6.328 7.594-15.42 11.52-24.59 11.52c-7.219 0-14.48-2.438-20.47-7.422c-13.58-11.31-15.41-31.48-4.094-45.06l142.9-171.5L7.422 84.5C-3.891 70.92-2.063 50.75 11.52 39.44c13.56-11.34 33.73-9.516 45.06 4.094L192 206l135.4-162.5c11.3-13.58 31.48-15.42 45.06-4.094c13.58 11.31 15.41 31.48 4.094 45.06l-142.9 171.5L376.6 427.5z"/></svg>`
|
|
4
|
+
const xIcon = `<svg fill="currentcolor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M376.6 427.5c11.31 13.58 9.484 33.75-4.094 45.06c-5.984 4.984-13.25 7.422-20.47 7.422c-9.172 0-18.27-3.922-24.59-11.52L192 305.1l-135.4 162.5c-6.328 7.594-15.42 11.52-24.59 11.52c-7.219 0-14.48-2.438-20.47-7.422c-13.58-11.31-15.41-31.48-4.094-45.06l142.9-171.5L7.422 84.5C-3.891 70.92-2.063 50.75 11.52 39.44c13.56-11.34 33.73-9.516 45.06 4.094L192 206l135.4-162.5c11.3-13.58 31.48-15.42 45.06-4.094c13.58 11.31 15.41 31.48 4.094 45.06l-142.9 171.5L376.6 427.5z"/></svg>`
|
|
5
5
|
|
|
6
6
|
const giantTest = `<svg
|
|
7
7
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
@@ -77,4 +77,4 @@ const giantTest = `<svg
|
|
|
77
77
|
</svg>
|
|
78
78
|
`
|
|
79
79
|
|
|
80
|
-
module.exports = {
|
|
80
|
+
module.exports = { xIcon, giantTest }
|