@bbki.ng/site 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -18,7 +18,26 @@ export const PluginsMenuItem = () => {
|
|
|
18
18
|
}, []);
|
|
19
19
|
return (
|
|
20
20
|
<ContextMenuSub>
|
|
21
|
-
<ContextMenuSubTrigger inset>
|
|
21
|
+
<ContextMenuSubTrigger inset>
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
width="16"
|
|
25
|
+
height="16"
|
|
26
|
+
viewBox="0 0 24 24"
|
|
27
|
+
fill="none"
|
|
28
|
+
stroke="currentColor"
|
|
29
|
+
strokeWidth="2"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
className="lucide lucide-plug rotate-90 absolute left-2.5"
|
|
33
|
+
>
|
|
34
|
+
<path d="M12 22v-5"></path>
|
|
35
|
+
<path d="M9 8V2"></path>
|
|
36
|
+
<path d="M15 8V2"></path>
|
|
37
|
+
<path d="M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z"></path>
|
|
38
|
+
</svg>
|
|
39
|
+
Plugins
|
|
40
|
+
</ContextMenuSubTrigger>
|
|
22
41
|
<ContextMenuSubContent className="w-48">
|
|
23
42
|
{plugins.map((plugin) => (
|
|
24
43
|
<PluginMenuItem
|