+
+
+
+
diff --git a/client/src/components/BaseComponents/componentVariants.ts b/client/src/components/BaseComponents/componentVariants.ts
new file mode 100644
index 000000000000..6f7dcbbb3e9e
--- /dev/null
+++ b/client/src/components/BaseComponents/componentVariants.ts
@@ -0,0 +1,12 @@
+export type ComponentColor = "grey" | "blue" | "green" | "yellow" | "orange" | "red";
+export type ComponentSize = "small" | "medium" | "large";
+
+export type ComponentVariantClassList = {
+ [_key in `g-${ComponentSize}`]?: true;
+} & {
+ [_key in `g-${ComponentColor}`]?: true;
+};
+
+export function prefix