+
+
+ {props.icon}
+
+
+ {props.title}
+ {props.description}
+
+
+ {props.additionalContent && {props.additionalContent}
}
+
+ );
+};
diff --git a/src/components/InstallationWizard/InstallationTypeButton/styles.ts b/src/components/InstallationWizard/InstallationTypeCard/styles.ts
similarity index 66%
rename from src/components/InstallationWizard/InstallationTypeButton/styles.ts
rename to src/components/InstallationWizard/InstallationTypeCard/styles.ts
index 9d3d71c80..efb783409 100644
--- a/src/components/InstallationWizard/InstallationTypeButton/styles.ts
+++ b/src/components/InstallationWizard/InstallationTypeCard/styles.ts
@@ -1,27 +1,18 @@
import styled from "styled-components";
-import { InstallationTypeButtonElementProps } from "./types";
+import { ButtonProps, ContainerProps } from "./types";
-export const InstallationTypeButton = styled.button`
+export const Container = styled.div