Skip to content

Commit eaa8f32

Browse files
authored
Merge pull request #26 from launchmelunchme/ui/swap-filename
UI: update filename
2 parents c9b67db + a26e670 commit eaa8f32

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ui/src/components/ExtensionComponent/AuthedDashboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
Box,
2929
} from "@sistent/sistent";
3030

31-
import KanvasGreen from "../../img/SVGs/kanvasGreen";
31+
import kanvasColor from "../../img/SVGs/kanvasColor";
3232
import DocsIcon from "../../img/SVGs/docsIcon";
3333
import KanvasHorizontalLight from "../../img/SVGs/KanvasHorizontalLight";
3434

@@ -94,7 +94,7 @@ const LaunchKanvasSection = ({ isDarkTheme }) => (
9494
sx={{ backgroundColor: isDarkTheme ? "#393F49" : "#D7DADE" }}
9595
>
9696
<AccountDiv>
97-
<KanvasGreen height={70} width={72} style={{ marginBottom: "1rem" }} />
97+
<kanvasColor height={70} width={72} style={{ marginBottom: "1rem" }} />
9898
<StyledButton variant="contained" component="span" onClick={() => (window.location.href = proxyUrl)}>
9999
<StyledLink style={{ color: "white" }}>Launch Kanvas</StyledLink>
100100
</StyledButton>

ui/src/img/SVGs/KanvasGreen.js renamed to ui/src/img/SVGs/kanvasColor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22

3-
const KanvasGreen = ({ height = 70, width = 72, ...props }) => {
3+
const kanvasColor = ({ height = 70, width = 72, ...props }) => {
44
return (
55
<svg
66
xmlns="http://www.w3.org/2000/svg"
@@ -44,4 +44,4 @@ const KanvasGreen = ({ height = 70, width = 72, ...props }) => {
4444
);
4545
};
4646

47-
export default KanvasGreen;
47+
export default kanvasColor;

0 commit comments

Comments
 (0)