From 6c48d7e4e7c473ca622dde359c536b9b28527f6b Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:57:01 +0000 Subject: [PATCH] Update components/grid-lines.tsx --- components/grid-lines.tsx | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 components/grid-lines.tsx diff --git a/components/grid-lines.tsx b/components/grid-lines.tsx new file mode 100644 index 0000000..48e3136 --- /dev/null +++ b/components/grid-lines.tsx @@ -0,0 +1,32 @@ +import { cn } from "@/lib/utils"; +import styles from "./common.module.css"; + +export const GridLineHorizontal = ({ ...props }) => { + return ( + <> +
+
+ + ); +}; + +export const GridLineVertical = ({ ...props }) => { + return ( + <> +
+
+ + ); +};