editcrafter
Version:
To use **EditCrafter** with Tailwind CSS, you need to set up Tailwind CSS in your project. Here's a step-by-step guide to help you integrate Tailwind CSS and customize your `tailwind.config.js` file for use with **EditCrafter**.
13 lines (12 loc) • 525 B
TypeScript
import { toggleVariants } from '../../../components/ui/toggle';
import { Editor } from '@tiptap/react';
import { VariantProps } from 'class-variance-authority';
import * as React from "react";
type InsertElementAction = "codeBlock" | "blockquote" | "horizontalRule";
interface SectionFiveProps extends VariantProps<typeof toggleVariants> {
editor: Editor;
activeActions?: InsertElementAction[];
mainActionCount?: number;
}
export declare const SectionFive: React.FC<SectionFiveProps>;
export default SectionFive;