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}

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