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) • 498 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 ListItemAction = "orderedList" | "bulletList";
interface SectionFourProps extends VariantProps<typeof toggleVariants> {
editor: Editor;
activeActions?: ListItemAction[];
mainActionCount?: number;
}
export declare const SectionFour: React.FC<SectionFourProps>;
export default SectionFour;