@t2ca/gatsby-theme-showcase 1.0.67 → 1.0.68

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t2ca/gatsby-theme-showcase",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "devDependencies": {
@@ -30,6 +30,7 @@ export default ({
30
30
  desktopLogo,
31
31
  desktopLogoHeight,
32
32
  desktopLogoWhite,
33
+ svgLogo,
33
34
  mobileLogo,
34
35
  name,
35
36
  }) => {
@@ -80,14 +81,15 @@ export default ({
80
81
  )}
81
82
  <Link to="/" sx={{ color: "inherit", textDecoration: "none" }}>
82
83
  <div sx={{ display: ["none", "none", "inherit"], pt: "4px" }}>
83
- <img
84
+ {svgLogo}
85
+ {/* <img
84
86
  src={isDark ? desktopLogoWhite : desktopLogo}
85
87
  height={desktopLogoHeight}
86
88
  alt={name}
87
89
  sx={{
88
90
  verticalAlign: ["bottom", "text-bottom"],
89
91
  }}
90
- />
92
+ />*/}
91
93
  {/* <Img
92
94
  fixed={isDark ? desktopLogoWhite : desktopLogo}
93
95
  sx={{