aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/Card.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/components/Card.tsx')
-rw-r--r--FrontEnd/src/components/Card.tsx38
1 files changed, 38 insertions, 0 deletions
diff --git a/FrontEnd/src/components/Card.tsx b/FrontEnd/src/components/Card.tsx
new file mode 100644
index 00000000..a8f0d3cc
--- /dev/null
+++ b/FrontEnd/src/components/Card.tsx
@@ -0,0 +1,38 @@
+import { ComponentPropsWithoutRef, Ref } from "react";
+import classNames from "classnames";
+
+import { ThemeColor } from "./common";
+import "./Card.css";
+
+interface CardProps extends ComponentPropsWithoutRef<"div"> {
+ containerRef?: Ref<HTMLDivElement>;
+ color?: ThemeColor;
+ border?: "color" | "none";
+ background?: "color" | "solid" | "grayscale" | "none";
+}
+
+export default function Card({
+ color,
+ background,
+ border,
+ className,
+ children,
+ containerRef,
+ ...otherProps
+}: CardProps) {
+ return (
+ <div
+ ref={containerRef}
+ className={classNames(
+ "cru-card",
+ `cru-card-${color ?? "primary"}`,
+ `cru-card-border-${border ?? "color"}`,
+ `cru-card-background-${background ?? "solid"}`,
+ className,
+ )}
+ {...otherProps}
+ >
+ {children}
+ </div>
+ );
+}