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**.
9 lines (8 loc) • 413 B
TypeScript
import { Editor } from '@tiptap/react';
import { VariantProps } from 'class-variance-authority';
import { toggleVariants } from '../../../components/ui/toggle';
interface LinkEditPopoverProps extends VariantProps<typeof toggleVariants> {
editor: Editor;
}
declare const LinkEditPopover: ({ editor, size, variant }: LinkEditPopoverProps) => import("react/jsx-runtime").JSX.Element;
export { LinkEditPopover };