From f9a0cfa9c9056b9a71e595774833fcaf1a20569c Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:02:58 +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 ( + <> +
+
+ + ); +};