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