From 1de4015e590b41f4b8db120e1eff0468f331b91b Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:41:35 +0000 Subject: [PATCH] Update components/skeletons/third.tsx --- components/skeletons/third.tsx | 59 ++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 components/skeletons/third.tsx diff --git a/components/skeletons/third.tsx b/components/skeletons/third.tsx new file mode 100644 index 0000000..65f6437 --- /dev/null +++ b/components/skeletons/third.tsx @@ -0,0 +1,59 @@ +"use client"; +import React, { useState } from "react"; + + +import { IconDots, IconPlus } from "@tabler/icons-react"; +import { Switch } from "../switch"; + +export const SkeletonThree = () => { + return ( +
+
+ +
+
+

+ Add LLM +

+

+ {" "} + Add +

+
+
+ + + + + +
+
+
+ ); +}; + +export const Row = ({ + title, + updatedAt, + active = false, +}: { + title: string; + updatedAt: string; + active?: boolean; +}) => { + const [checked, setChecked] = useState(active); + return ( +
+
+

+ {title} +

+

{updatedAt}

+
+
+ + +
+
+ ); +};