Skip to content

Commit

Permalink
Renaming the S3 component as it was having issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
gjones committed Nov 10, 2023
1 parent b384ceb commit 186ce1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SVGAttributes } from "react";

const AWSS3 = (props: SVGAttributes<SVGElement>) => (
const AWS_S3 = (props: SVGAttributes<SVGElement>) => (
<svg
width="64"
height="64"
Expand Down Expand Up @@ -50,4 +50,4 @@ const AWSS3 = (props: SVGAttributes<SVGElement>) => (
</svg>
);

export default AWSS3;
export default AWS_S3;
2 changes: 1 addition & 1 deletion src/components/Logos/LogosDark.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { SVGAttributes } from "react";
import AWSDark from "./AWSDark";
import AWSRedshift from "./AWSRedshift";
import AWSS3 from "./AWSS3";
import AWSS3 from "./AWS_S3";
import AWSAthena from "./AWSAthena";
import Azure from "./Azure";
import BigQuery from "./BigQuery";
Expand Down
2 changes: 1 addition & 1 deletion src/components/Logos/LogosLight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SVGAttributes } from "react";
import AWSLight from "./AWSLight";
import AWSAthena from "./AWSAthena";
import AWSRedshift from "./AWSRedshift";
import AWSS3 from "./AWSS3";
import AWSS3 from "./AWS_S3";
import Azure from "./Azure";
import BigQuery from "./BigQuery";
import Chash from "./Chash";
Expand Down

0 comments on commit 186ce1a

Please sign in to comment.