| 1 | "use client"; |
| 2 | |
| 3 | import { TogglePlugin } from "@platejs/toggle/react"; |
| 4 | |
| 5 | import { IndentKit } from "@/components/plate/plugins/indent-kit"; |
| 6 | import { ToggleElement } from "@/components/plate/ui/toggle-node"; |
| 7 | |
| 8 | export const ToggleKit = [ |
| 9 | ...IndentKit, |
| 10 | TogglePlugin.withComponent(ToggleElement), |
| 11 | ]; |
| 12 |